Devtoolset8安装
更新系统和安装必要软件包
yum update
yum install -y autoconf autogen automake autotools-dev ca-certificates g++ git less libtool make nano pkg-config python python-numpy python3 unzip wget xxd zlib
安装devtoolset-8(使用高版本gcc-8.3.1)
yum install centos-release-scl -y
yum install devtoolset-8 -y
使devtoolset-8生效
source /opt/rh/devtoolset-8/enable
这时,gcc编译器为8.3.1版本。
当然,我们也可以用这个方法安装devtoolset-7、devtoolset-9、devtoolset-10等
@知乎