您的位置:首页 > 运维架构 > Linux

Centos 6.9 在线Install gcc 4 gcc 5

2017-07-12 21:14 393 查看
gcc 4.8

curl -Lks http://www.hop5.in/yum/el6/hop5.repo > /etc/yum.repos.d/hop5.repo

yum install gcc gcc-g++ -y

gcc --version

g++ --version

gcc 4.9

curl -Lks http://www.hop5.in/yum/el6/hop5.repo > /etc/yum.repos.d/hop5.repo

yum install centos-release-scl -y

yum install devtoolset-3-toolchain -y

scl enable devtoolset-3 bash

gcc --version

g++ --version

gcc 5.2

curl -Lks http://www.hop5.in/yum/el6/hop5.repo > /etc/yum.repos.d/hop5.repo

yum install centos-release-scl -y

yum install devtoolset-4-toolchain -y

scl enable devtoolset-4 bash

gcc --version

g++ --version
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: