This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
gfortan requires old directory in LD_LIBRARY_PATH or else gmp error
- From: "Poor Yorick" <org dot gnu dot gcc dot help at pooryorick dot com>
- To: gcc-help at gnu dot org
- Date: Sat, 17 Nov 2007 21:43:03 +0000
- Subject: gfortan requires old directory in LD_LIBRARY_PATH or else gmp error
- Reply-to: "Poor Yorick" <org dot gnu dot gcc dot help at pooryorick dot com>
I've been trying to build gcc 4.2.2 using a script which starts with a blank environment and explicitly sets each needed variable. I've installed gmp and mpfr and am specifying those installations with --with-gmp and --with-mpfr. On two different systems, I've found that unless LD_LIBRARY_PATH contains the library directory of the previous gcc, I get the following error:
checking whether the GNU Fortran compiler is working... no
configure: error: GNU Fortran is not working; the most common reason
for that is that you might have linked it to shared GMP and/or MPFR
libraries, and not set LD_LIBRARY_PATH accordingly. If you suspect...
The following settings (two different systems, /path/to/usr/lib is where gmp and mpfr are installed) result in a successful build
LD_LIBRARY_PATH=/path/to/usr/lib:/usr/lib/gcc-lib/i386-redhat-linux/3.2.3
LD_LIBRARY_PATH=/path/to/usr/lib:/usr/lib/gcc/x86_64-redhat-linux/3.4.3
Why does the newly-compiled gfortran need this old path in LD_LIBRARY_PATH to function?