首先我们介绍一种从零做起的编译方式,然后介绍一种相对简便的方法。
下载源码
- 自GNU FTP站下载GCC。
- 自Infrastructure页面下载四个库的源代码,即GMP、MPFR、MPC以及ISL(ISL非必需)。
编译安装
首先用系统中现存的编译器按照顺序编译上述的四个库,指定prefix为$HOME
。如果库之间有依赖(例如MPFR依赖GMP),则需要在configure
的时候指定--with-SOME_LIB=$HOME
。
具体步骤如下:
- 编译GMP
$ ./configure --prefix=$HOME
$ make
$ make check
$ make install
- 编译MPFR
$ ./configure --prefix=$HOME --with-gmp=$HOME
$ make
$ make check
$ make install
- 编译MPC
$ ./configure --prefix=$HOME --with-gmp=$HOME --with-mpfr=$HOME
$ make
$ make check
$ make install
- 编译ISL
$ ./configure --prefix=$HOME --with-gmp-prefix=$HOME
$ make
$ make check
$ make install
注意
- 这里需要指定
--with-gmp-prefix
而不是--with-gmp
,否则会提示找不到gmp.h。 在
configure
GCC的时候,如果提示找不到ISL库且错误信息如下:checking for version 0.10 of ISL… no
checking for version 0.11 of ISL… no
checking for version 0.12 of ISL… no
checking for version 0.14 of ISL… no
configure: error: Unable to find a usable ISL. See config.log for details.可以选择:
- 忽略这个库。
-
export LD_LIBRARY_PATH=$HOME/lib
将$HOME/lib
加入共享库搜索路径。 - 参考下面的简便步骤进行编译。
进入gcc源码目录,开始正式编译GCC:
$ ./configure --prefix=$HOME --with-gmp=$HOME --with-mpfr=$HOME --with-mpc=$HOME --with-isl=$HOME --enable-languages=c,c++ --disable-multilib
$ make -j4
$ make install
简便步骤
实际上我们无需手动去下载上述的库源代码,GCC提供了一个脚本,会下载并解压那些源代码,并且在编译GCC的过程中自动编译那些库。
下载并解压GCC源码后执行:
$ cd GCC_SOURCE # GCC_SOURCE代表你解压源代码的目录
$ ./contrib/download_prerequisites # 由脚本下载并解压必备库
$ cd #回到家目录
$ mkdir gcc-build
$ cd gcc-build
$ ../GCC_SOURCE/configure --prefix=$HOME --enable-languages=c,c++ --disable-multilib
$ make -j4
$ make install
检验结果
由于我们指定了--prefix=$HOME
,所以GCC的可执行文件将被安装到$HOME/bin
,请确保该目录位于$PATH
中,然后执行$ gcc --version
确认GCC版本。