参考一:How to Install gcc 4.7.x/4.8.x on CentOS
参考二:CentOS 升级 gcc 和 g++ 的方法
参考三:linux yum命令详解
参考四:每天一个linux命令之wget命令
1.下载并安装文件
cd /etc/yum.repos.d/
wget http://people.centos.org/tru/devtools-1.1/devtools-1.1.repo
或:
wget http://people.centos.org/tru/devtools-1.1/devtools-1.1.repo -O /etc/yum.repos.d/devtools-1.1.repo
#安装
yum --enablerepo=testing-1.1-devtools-6 install devtoolset-1.1-gcc devtoolset-1.1-gcc-c++
2. 在此目录之下,查看yum安装之后产生的文件,并设置环境变量
ll /opt/centos/devtoolset-1.1/root/usr/bin/
#设置环境变量
echo 'export PATH="/opt/centos/devtoolset-1.1/root/usr/bin/:$PATH"' >> ~/.bash_profile
3. 查看版本变化
g++ --version
g++ (GCC) 4.7.2 20121015 (Red Hat 4.7.2-5) Copyright (C) 2012 Free
Software Foundation, Inc. This is free software; see the source for
copying conditions. There is NO warranty; not even for
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.