1、首先檢查gcc,g++是否存在c++
# gcc -v ui
# g++ -vget
若是2個命令都顯示了版本信息,說明安裝了,能夠跳過第2步it
2、yum安裝gcc g++gcc
# yum -y install gccftp
# yum -y install gcc-c++配置
這2個不安裝的話後面安裝6.1的時候會報錯誤:sso
checking how to run the C++ preprocessor... /lib/cpp
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.權限
3、最後固然就是升級工做了 下載
# wget http://ftp.gnu.org/gnu/gcc/gcc-6.1.0/gcc-6.1.0.tar.gz //下載gcc-6.1.0.tar.gz
# tar -zvxf gcc-6.1.0.tar.gz //解壓縮
# cd gcc-6.1.0 //進入gcc目錄
# ./contrib/download_prerequisites //下載相應的依賴程序
# mkdir build && cd build //新建一個build目錄而且切換到該目錄
# ../configure -enable-checking=release -enable-languages=c,c++ -disable-multilib //配置
# make && make install //構建和安裝
注意!最好使用root權限進行安裝!!!