diff options
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/gcc.xml | 6 | ||||
-rw-r--r-- | chapter06/perl.xml | 4 |
2 files changed, 5 insertions, 5 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> diff --git a/chapter06/perl.xml b/chapter06/perl.xml index eff9a3a50..4fc710607 100644 --- a/chapter06/perl.xml +++ b/chapter06/perl.xml @@ -107,10 +107,6 @@ </variablelist> - <para>Fix an incompatibility between this package and Glibc-&glibc-version;:</para> - -<screen><userinput remap="pre">sed -i '/test-installation.pl/d' Makefile</userinput></screen> - <para>Compile the package:</para> <screen><userinput remap="make">make</userinput></screen> |