From ea5c1d17a85285abf6d4aa8703a8eedac05c4c5c Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Tue, 22 Jun 2010 09:25:36 +0000 Subject: Upgrade to MPFR-3.0.0. Fixes #2687. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9309 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/gcc-pass1.xml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'chapter05/gcc-pass1.xml') diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index af589b579..c15c95fd2 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -67,7 +67,8 @@ cd ../gcc-build --disable-nls --disable-shared --disable-multilib \ --disable-decimal-float --disable-threads \ --disable-libmudflap --disable-libssp \ - --disable-libgomp --enable-languages=c + --disable-libgomp --enable-languages=c \ + --with-gmp-include=$(pwd)/gmp --with-gmp-lib=$(pwd)/gmp/.libs The meaning of the configure options: @@ -107,6 +108,20 @@ cd ../gcc-build + + --with-gmp-include=... + + This option tells GCC where the GMP headers are located. + + + + + --with-gmp-lib=... + + This option tells GCC where the GMP library is located. + + + Compile GCC by running: -- cgit v1.2.3-54-g00ecf