我正在尝试在CentOS 5.5版(最终版)下构建GCC 4.6.我刚刚构建了GMP-5.0.1,MPC-0.9和MPFR-3.0.1,并使用了以下configure命令:
../configure --prefix =/users/xxxx/apps/mygcc4.6 --disable-checking --enable-threads = posix --enable-languages = c,c ++,fortran --with-mpfr =/users/xxxx/code/gcc/mpfr-3.0.1-install-cyprus --with-gmp =/users/xxxx/code/gcc/gmp-5.0.1-install-cyprus --with-mpc =/users/xxxx /代码/ GCC/MPC-0.9安装,塞浦路斯
在此之后,我运行make并在大约5分钟后得到以下错误消息:
检查目标文件的后缀... configure:error:in /users/xxxx/code/gcc/gcc-4.6.0/obj/x86_64-unknown-linux-gnu/libgcc':
configure: error: cannot compute suffix of object files: cannot compile
See
config.log'以获取更多详细信息.
config.log表示涉及最近生成的程序(cc1):
/users/xxxx/code/gcc/gcc-4.6.0/obj/./gcc/cc1
事实上,如果我在没有参数的情况下运行此程序,我会在config.log中找到相同的错误消息:
加载共享库时出错:libmpfr.so.4:无法打开共享对象文件:没有这样的文件或目录
但是,libmpfr.so.4位于提供的lib子目录中,使用--with-mpfr标志进行配置,如上所示.我有LD_LIBRARY_PATH和LIBRARY_PATH为空.知道如何通过这个错误吗?
确保您的库在给定的目录中,而不是在某个lib
子目录中.使用export LD_LIBRARY_PATH=/users/xxxx/code/gcc/mpfr-3.0.1-install-cyprus
你已经建议;-)