cd /etc/yum.repos.d wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo yum --enablerepo=testing-devtools-2-centos-6 install devtoolset-2-gcc devtoolset-2-gcc-c++
經過經過第一步會把 GCC 安裝到如下目錄:c++
/opt/rh/devtoolset-2/root/usr/bin
接下來須要修改系統的配置,使默認的 gcc 和 g++ 命令使用的是新安裝的版本。centos
ln -s /opt/rh/devtoolset-2/root/usr/bin/* /usr/local/bin/ hash -r
如今查看 g++ 的版本號:code
#gcc --version gcc (GCC) 4.8.2 20140120 (Red Hat 4.8.2-15) Copyright (C) 2013 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.
已經從4.4.7升級到4.8.2了。get