Skip to content

Commit ff4b55d

Browse files
committed
chore: prepare for manylinux_2_35 and riscv64
This does not add or test either of those.
1 parent 88eeba0 commit ff4b55d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ case "${PLATFORM}" in
1919
ppc64le) GOARCH="ppc64le";;
2020
s390x) GOARCH="s390x";;
2121
armv7l) GOARCH="arm/v7";;
22+
riscv64) GOARCH="riscv64";;
2223
*) echo "Unsupported platform: '${PLATFORM}'"; exit 1;;
2324
esac
2425

@@ -47,6 +48,11 @@ elif [ "${POLICY}" == "manylinux_2_34" ]; then
4748
DEVTOOLSET_ROOTPATH="/opt/rh/gcc-toolset-14/root"
4849
PREPEND_PATH="/usr/local/bin:${DEVTOOLSET_ROOTPATH}/usr/bin:"
4950
LD_LIBRARY_PATH_ARG="${DEVTOOLSET_ROOTPATH}/usr/lib64:${DEVTOOLSET_ROOTPATH}/usr/lib:${DEVTOOLSET_ROOTPATH}/usr/lib64/dyninst:${DEVTOOLSET_ROOTPATH}/usr/lib/dyninst"
51+
elif [ "${POLICY}" == "manylinux_2_35" ]; then
52+
BASEIMAGE="ubuntu:22.04"
53+
DEVTOOLSET_ROOTPATH=
54+
PREPEND_PATH=
55+
LD_LIBRARY_PATH_ARG=
5056
elif [ "${POLICY}" == "musllinux_1_2" ]; then
5157
BASEIMAGE="alpine:3.21"
5258
DEVTOOLSET_ROOTPATH=

0 commit comments

Comments
 (0)