VMWare+Centos7html
安裝GCC最簡單的方式固然是【yum -y install gcc】
可是個人機器上安裝下來後,其版本是4.8.5,感受有點低,因此想升級一下(7.2.0, 8.2.0之類的版本)。
因而須要手動安裝。linux
1. 本地沒有GCC致使編譯不經過
緣由分析:c++
安裝高版本GCC時,須要依賴其它GCC,因此須要保證有一個較低版本的GCCide
解決方法:
這個最簡單的固然就是經過上面的【yum -y install gcc】進行安裝
g++也一塊兒安裝了吧,命令【yum -y install gcc-c++】
安裝後能夠【gcc -v】、【g++ -v】進行測試,能打出正常版本表示成功測試
2. 上一步中偷懶,沒有安裝g++
會有以下報錯:
checking how to run the C++ preprocessor... /lib/cpp
configure: error: in `/usr/cyh/gcc-8.2.0/host-x86_64-pc-linux-gnu/gcc':
configure: error: C++ preprocessor "/lib/cpp" fails sanity check
See `config.log' for more details.
make[2]: *** [configure-stage1-gcc] 錯誤 1
make[2]: 離開目錄「/usr/cyh/gcc-8.2.0」
make[1]: *** [stage1-bubble] 錯誤 2
make[1]: 離開目錄「/usr/cyh/gcc-8.2.0」
make: *** [all] 錯誤 2
經過【fails sanity check】進行搜索了一上,其實就是沒有安裝C++編譯器
也就是上面的g++也要一塊兒安裝一下,否則一直報這個錯ui
3. 直接在新下載的GCC源碼路徑中編譯
緣由分析:spa
GCC的源碼目錄和安裝目錄,不要在同一個路徑樹中
正例:htm
源碼目錄=/home/cyh/study/, 安裝目錄=/usr/local/
官方文檔:文檔
https://gcc.gnu.org/install/configure.html
原文是【First, we highly recommend that GCC be built into a separate directory from the sources which does not reside within the source tree.】get
一、下載GCC
方式有不少,能夠經過網頁下載再上傳到VM、能夠直接wget等等
假設我下載到 /home/cyh/study 目錄,分別執行了如下命令:
cd /home/cyh/study
wget http://ftp.gnu.org/gnu/gcc/gcc-7.2.0/gcc-7.2.0.tar.gz
tar -zxvf gcc-7.2.0.tar.gz
cd gcc-7.2.0
二、配置(不推薦)
此時能夠執行【./configure --prefix=/user/local/】,可是會報錯,以下:
【configure: error: Building GCC requires GMP 4.2+, MPFR 2.4.0+ and MPC 0.8.0+.】
表示須要這些依賴包,因此繼續下載
GCC 源碼裏自帶腳本能夠輕鬆下載依賴包,執行【./contrib/download_prerequisites】
若是自動安裝成功,會有以下輸出:
【All prerequisites downloaded successfully.】
依賴下載完成後,再執行【./configure --prefix=/user/local/】
若是有【configure: error: I suspect your system does not have 32-bit development libraries (libc and headers). If you have them, rerun configure with --enable-multilib. If you do not have them, and want to build a 64-bit-only compiler, rerun configure with --disable-multilib.】這樣的報錯,則要在上面的命令中加入【--disable-multilib】參數,因此命令變爲下面這樣【./configure --prefix=/user/local/ --disable-multilib】
三、配置(推薦)
既然已經知道了GCC安裝時有依賴,那就直接先搞定依賴再來配置
因此先執行【./contrib/download_prerequisites】
若是一切順利,再執行【./configure --prefix=/user/local/ --disable-multilib】便可
四、make
直接執行 make 命令(我機器上執行了3小時,OMG)
五、make install
直接執行 make install 命令