2021-05-12 14:32:11
CentOS 7.5下線上yum安裝GCC與G++
GCC(GNU Compiler Collection)是Linux下最主要的編譯工具,GCC不僅功能非常強大,結構也非常靈活。它可以通過不同的前端模組來支援各種語言,如Java、Fortran、Pascal、Modula-3和Ada。
在CentOS下,可以在聯網狀態下線上yum安裝GCC,但是此種方式安裝的GCC是4.8.5版本的,有時候已經不能滿足需要。因此還需在此基礎上進行升級。截止目前已經有5.0以上的最新版本了,GCC 4.8 開始全面支援C 11和C++ 11的新特性。
先檢視下CentOS系統有沒有安裝GCC與G++。
開啟終端輸入gcc -v或者:g++ -v
顯示沒有安裝,下面開始安裝。
使用yum安裝gcc與g++
在有網路連線條件下進行分別執行如下命令:
#安裝gcc、c++編譯器以及核心檔案
[linuxidc@localhost linuxidc.com]$ sudo yum -y install gcc gcc-c++ kernel-devel
輸出:
已安裝:
gcc.x86_64 0:4.8.5-28.el7_5.1 gcc-c++.x86_64 0:4.8.5-28.el7_5.1
kernel-devel.x86_64 0:3.10.0-862.14.4.el7
作為依賴被安裝:
glibc-devel.x86_64 0:2.17-222.el7
glibc-headers.x86_64 0:2.17-222.el7
kernel-headers.x86_64 0:3.10.0-862.14.4.el7
libstdc++-devel.x86_64 0:4.8.5-28.el7_5.1
作為依賴被升級:
cpp.x86_64 0:4.8.5-28.el7_5.1 libgcc.x86_64 0:4.8.5-28.el7_5.1
libgomp.x86_64 0:4.8.5-28.el7_5.1 libstdc++.x86_64 0:4.8.5-28.el7_5.1
完畢!
#如果沒有安裝make:
yum install make
檢視下,預設已經安裝好了。
[linuxidc@localhost linuxidc.com]$ make -v
GNU Make 3.82
Built for x86_64-RedHat-linux-gnu
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
#驗證安裝成功的方法:
[linuxidc@localhost linuxidc.com]$ gcc -v
使用內建 specs。
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
目標:x86_64-redhat-linux
設定為:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
執行緒模型:posix
gcc 版本 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
或者:
[linuxidc@localhost linuxidc.com]$ g++ -v
使用內建 specs。
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
目標:x86_64-redhat-linux
設定為:../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
執行緒模型:posix
gcc 版本 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC)
如果顯示的gcc版本仍是以前的版本,可以重新啟動系統;
#檢視gcc的安裝位置:which gcc;
[linuxidc@localhost linuxidc.com]$ which gcc
/usr/bin/gcc
測試一個C程式:
#include<stdio.h>
int main()
{
printf("nLinux公社(www.linuxidc.com)是專業的Linux系統入口網站nn");
return 0;
}
OK。
線上安裝這裡沒有對gmp、mpfr、mpc等軟體分別進行解壓和編譯,而是直接由download_prerequisites負責下載並解壓,最後和gcc一起進行編譯安裝,這是官方推薦的做法。
相關文章