gcc安装(centos)
Posted 爱来无忧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gcc安装(centos)相关的知识,希望对你有一定的参考价值。
gcc 4.8 安装
[[email protected] ~]
# curl -Lks http://www.hop5.in/yum/el6/hop5.repo > /etc/yum.repos.d/hop5.repo
[[email protected] ~]
# yum install gcc gcc-g++ -y
[[email protected] ~]
# gcc --version
gcc 4.9 安装
[[email protected] ~]
# yum install centos-release-scl -y
[[email protected] ~]
# yum install devtoolset-3-toolchain -y
[[email protected] ~]
# scl enable devtoolset-3 bash
[[email protected] ~]
# gcc --version
gcc 5.2 安装
[[email protected] ~]
# yum install centos-release-scl -y
[[email protected] ~]
# yum install devtoolset-4-toolchain -y
[[email protected] ~]
# scl enable devtoolset-4 bash
[[email protected] ~]
# gcc --version
以上是关于gcc安装(centos)的主要内容,如果未能解决你的问题,请参考以下文章