diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-08-15 03:52:06 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-08-15 03:52:06 +0000 |
commit | 2efa44adaf384fae3c644b560546c4b3bbb8d850 (patch) | |
tree | 5996f39bf4d1e247f5300afc2f4d47f222a57b44 /chapter06/gcc.xml | |
parent | 778deac96f8655c92a6b10877fb8fb5c79d459f4 (diff) |
Upgrade to perl-5.16.1
Removed unneeded sed instruction from Chapter 6 perl
Updated gcc instructions to fix some make check errors
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9939 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/gcc.xml')
-rw-r--r-- | chapter06/gcc.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index 9ba825dc4..54cdad060 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -57,6 +57,10 @@ i?86) sed -i 's/^T_CFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in ;; esac</userinput></screen> + <para>Also fix an error in one of the check Makefiles:</para> + +<screen><userinput remap="pre">sed -i -e /autogen/d -e /check.sh/d fixincludes/Makefile.in</userinput></screen> + <para>The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory:</para> @@ -104,7 +108,7 @@ cd ../gcc-build</userinput></screen> <para>One set of tests in the GCC test suite is known to exhaust the stack, so increase the stack size prior to running the tests:</para> -<screen><userinput remap="test">ulimit -s 16384</userinput></screen> +<screen><userinput remap="test">ulimit -s 32768</userinput></screen> <para>Test the results, but do not stop at errors:</para> |