Skip to content

Commit 9524941

Browse files
committed
feat: update gcc-toolset to gcc-toolset-13 on manylinux_2_28
1 parent aa9b5fa commit 9524941

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ for repeatable builds.
9696
manylinux_2_28 (AlmaLinux 8 based)
9797
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9898

99-
Toolchain: GCC 12
99+
Toolchain: GCC 13
100100

101101
- x86_64 image: ``quay.io/pypa/manylinux_2_28_x86_64``
102102
- aarch64 image: ``quay.io/pypa/manylinux_2_28_aarch64``

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [ "${POLICY}" == "manylinux2014" ]; then
5151
fi
5252
elif [ "${POLICY}" == "manylinux_2_28" ]; then
5353
BASEIMAGE="${MULTIARCH_PREFIX}almalinux:8"
54-
DEVTOOLSET_ROOTPATH="/opt/rh/gcc-toolset-12/root"
54+
DEVTOOLSET_ROOTPATH="/opt/rh/gcc-toolset-13/root"
5555
PREPEND_PATH="${DEVTOOLSET_ROOTPATH}/usr/bin:"
5656
LD_LIBRARY_PATH_ARG="${DEVTOOLSET_ROOTPATH}/usr/lib64:${DEVTOOLSET_ROOTPATH}/usr/lib:${DEVTOOLSET_ROOTPATH}/usr/lib64/dyninst:${DEVTOOLSET_ROOTPATH}/usr/lib/dyninst"
5757
elif [ "${POLICY}" == "musllinux_1_2" ]; then

docker/build_scripts/install-runtime-packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ elif [ "${AUDITWHEEL_POLICY}" == "manylinux_2_28" ]; then
9999
dnf -y upgrade
100100
dnf -y install dnf-plugins-core
101101
dnf config-manager --set-enabled powertools # for yasm
102-
TOOLCHAIN_DEPS="gcc-toolset-12-binutils gcc-toolset-12-gcc gcc-toolset-12-gcc-c++ gcc-toolset-12-gcc-gfortran"
102+
TOOLCHAIN_DEPS="gcc-toolset-13-binutils gcc-toolset-13-gcc gcc-toolset-13-gcc-c++ gcc-toolset-13-gcc-gfortran"
103103
if [ "${AUDITWHEEL_ARCH}" == "x86_64" ]; then
104104
TOOLCHAIN_DEPS="${TOOLCHAIN_DEPS} yasm"
105105
fi

0 commit comments

Comments
 (0)