-
Notifications
You must be signed in to change notification settings - Fork 237
Closed
Labels
Description
I have noticed that gcc 10 is now available via devtoolset-10 in CentOS 7.
https://centos.pkgs.org/7/centos-sclo-rh-x86_64/devtoolset-10-toolchain-10.1-0.el7.x86_64.rpm.html
Would it be possible to upgrade the gcc/g++ version to 10 for manylinux2014 image? We can get the most of the C++20 features.
I have briefly read the Dockerfile and it seems to only replace the line
TOOLCHAIN_DEPS="devtoolset-9-binutils devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-gcc-gfortran"
into
TOOLCHAIN_DEPS="devtoolset-10-binutils devtoolset-10-gcc devtoolset-10-gcc-c++ devtoolset-10-gcc-gfortran"
Is that so simple or maybe I have misunderstood the way which the image installs the tool chain?