下载gcc源码
wget https://ftp.gnu.org/gnu/gcc/gcc-7.3.0/gcc-7.3.0.tar.gz
开始编译
tar -xvf gcc-7.3.0.tar.gz
cd gcc-7.3.0
./configure --prefix=/usr/local/gcc-7.3.0
make
sudo make install
如果报错:configure: error: Building GCC requires GMP 4.2+, MPFR 2.4.0+ and MPC 0.8.0+.
则安装gmp、mpfr以及mpc即可,步骤如下
1. 安装GMP
wget ftp://gnu.mirror.iweb.com/gmp/gmp-4.3.2.tar.gz
tar -xvf gmp-4.3.2.tar.gz
cd gmp-4.3.2
./configure
make
sudo make install
2. 安装MPFR
wget http://www.mpfr.org/mpfr-current/mpfr-3.1.2.tar.gz
tar -xvf mpfr-3.1.2.tar.gz
cd mpfr-3.1.2
./configure
make
sudo make install
3. 安装MPC
wget ftp://ftp.gnu.org/gnu/mpc/mpc-1.0.3.tar.gz
tar -xvf mpc-1.0.3.tar.gz
cd mpc-1.0.3
./configure
make
sudo make install
以上三个依赖安装完成后,即可继续编译gcc