Skip to content

Commit 6c5a3ef

Browse files
committed
feat: update gcc-toolset to gcc-toolset-14 on manylinux_2_28
1 parent f317aa7 commit 6c5a3ef

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ distros using glibc 2.34 or later, including:
124124
manylinux_2_28 (AlmaLinux 8 based)
125125
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
126126

127-
Toolchain: GCC 13
127+
Toolchain: GCC 14
128128

129129
- x86_64 image: ``quay.io/pypa/manylinux_2_28_x86_64``
130130
- 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
@@ -41,7 +41,7 @@ if [ "${POLICY}" == "manylinux2014" ]; then
4141
fi
4242
elif [ "${POLICY}" == "manylinux_2_28" ]; then
4343
BASEIMAGE="almalinux:8"
44-
DEVTOOLSET_ROOTPATH="/opt/rh/gcc-toolset-13/root"
44+
DEVTOOLSET_ROOTPATH="/opt/rh/gcc-toolset-14/root"
4545
PREPEND_PATH="${DEVTOOLSET_ROOTPATH}/usr/bin:"
4646
LD_LIBRARY_PATH_ARG="${DEVTOOLSET_ROOTPATH}/usr/lib64:${DEVTOOLSET_ROOTPATH}/usr/lib:${DEVTOOLSET_ROOTPATH}/usr/lib64/dyninst:${DEVTOOLSET_ROOTPATH}/usr/lib/dyninst"
4747
elif [ "${POLICY}" == "manylinux_2_34" ]; then

docker/build_scripts/install-runtime-packages.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,10 @@ elif [ "${OS_ID_LIKE}" == "rhel" ]; then
112112
dnf -y install dnf-plugins-core epel-release
113113
if [ "${AUDITWHEEL_POLICY}" == "manylinux_2_28" ]; then
114114
dnf config-manager --set-enabled powertools
115-
TOOLCHAIN_DEPS="gcc-toolset-13-binutils gcc-toolset-13-gcc gcc-toolset-13-gcc-c++ gcc-toolset-13-gcc-gfortran"
116115
else
117116
dnf config-manager --set-enabled crb
118-
TOOLCHAIN_DEPS="gcc-toolset-14-binutils gcc-toolset-14-gcc gcc-toolset-14-gcc-c++ gcc-toolset-14-gcc-gfortran"
119117
fi
118+
TOOLCHAIN_DEPS="gcc-toolset-14-binutils gcc-toolset-14-gcc gcc-toolset-14-gcc-c++ gcc-toolset-14-gcc-gfortran"
120119
if [ "${AUDITWHEEL_ARCH}" == "x86_64" ]; then
121120
TOOLCHAIN_DEPS="${TOOLCHAIN_DEPS} yasm"
122121
fi

0 commit comments

Comments
 (0)