點(diǎn)贊蚓耽,收藏,手有余香
https://linuxhostsupport.com/blog/how-to-install-gcc-on-centos-7/
不同版本GCC下載
http://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/
wget http://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-7.3.0/gcc-7.3.0.tar.gz
tar -xvf gcc-7.3.0.tar.gz
cd gcc-7.3.0
#下載GCC的依賴
./contrib/download_prerequisites
#配置
./configure --disable-multilib --enable-languages=c,c++
#編譯
make -j 4
#指定安裝路徑
make install DESTDIR=$HOME/.local/gcc7.3
$ ~/.local/gcc7.3.0/usr/local/bin/gcc --version
gcc (GCC) 7.3.0
Copyright (C) 2017 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.
手動(dòng)將gcc添加到環(huán)境變量PATH中,略.
export PATH=$HOME/.local/gcc7.3.0/usr/local/bin/:local$PATH
export LD_LIBRARY_PATH=$HOME/.local/gcc7.3.0/usr/local/lib/:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$HOME/.local/gcc7.3.0/usr/local/lib64/:$LD_LIBRARY_PATH
$gcc --version
gcc (GCC) 7.3.0
Copyright (C) 2017 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.
手動(dòng)將gcc添加到環(huán)境變量PATH中,略.
其他GCC版本
http://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/