From d3757f1ccd35ea58b9dce7b7800f3f16481e8019 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Fri, 6 Sep 2013 03:07:58 +0000 Subject: [PATCH] Tag and adjust gcc instructions for 7.4 git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@11775 af4574ff-66df-0310-9fd7-8a98e5e911e0 --- general/prog/gcc.xml | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/general/prog/gcc.xml b/general/prog/gcc.xml index b9581124d7..5930544708 100644 --- a/general/prog/gcc.xml +++ b/general/prog/gcc.xml @@ -44,7 +44,7 @@ Many consider the Iced Tea version to be a more robust Java environment than the one provided by GCC. - &lfs73_checked; + &lfs74_checked; If you are upgrading GCC from any other @@ -203,20 +203,29 @@ esac && mkdir ../gcc-build && cd ../gcc-build && -../gcc-&gcc-version;/configure \ - --prefix=/usr \ - --libdir=/usr/lib \ - --libexecdir=/usr/lib \ - --with-system-zlib \ - --enable-shared \ - --enable-threads=posix \ - --enable-__cxa_atexit \ - --disable-multilib \ - --enable-clocale=gnu \ - --enable-lto \ +../gcc-&gcc-version;/configure \ + --prefix=/usr \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib \ + --enable-shared \ + --enable-threads=posix \ + --enable-__cxa_atexit \ + --disable-multilib \ + --disable-bootstrap \ + --disable-install-libiberty \ + --with-system-zlib \ + --enable-clocale=gnu \ + --enable-lto \ --enable-languages=c,c++,fortran,ada,go,java,objc,obj-c++ && +make + -make && + If you have installed additional packages such as valgrind and gdb, + the gcc part of the testsuite will run more tests than in LFS. + Some of those will report FAIL and others XPASS (pass when expected + to FAIL). To run the checks: + + ulimit -s 32768 && make -k check &&