GCC在CentOS6.2下安装需要预先安装GMP,结果安装GMP报错
最近想用LINUX CentOS装个新版本的GCC来用(我的电脑是工作机,不能联网的)。结果,安装GCC需要首先安装GMP\mpfr\mpc几个东西
于是,跑到GNU的ftp网站:http://ftp.上面把这些安装包都下载回来,全是最新的,GMP-5.1.3,mpfr-3.1.2,mpc-1.0.2
然后就开始安装,按照网上找的很多网页教程做,第一步是安装GMP,结果安装gmp的时候,需要make check(好像是检测很多东西),反正就是make check没通过,因此无法进行后面的安装。
make check的时候,对话框会显示很多信息,就不全部粘贴来了,下面的是报错信息:
==================
make[4]: Leaving directory `/usr/local/src/temp1/tests/misc'
make[3]: Leaving directory `/usr/local/src/temp1/tests/misc'
Making check in cxx
make[3]: Entering directory `/usr/local/src/temp1/tests/cxx'
make
make[4]: Entering directory `/usr/local/src/temp1/tests/cxx'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/usr/local/src/temp1/tests/cxx'
make check-TESTS
make[4]: Entering directory `/usr/local/src/temp1/tests/cxx'
==================
All 0 tests passed
==================
似乎是检测C++的什么东西,没通过测试,就挂了。
有碰到相同问题的同志吗??