diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2010-09-18 19:37:51 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2010-09-18 19:37:51 +0000 |
commit | 4e48f56e6c3b11397527b5471a1c5d8d9946ea19 (patch) | |
tree | 1880767259e0eed300a9432813a9123f78de85f5 /chapter06 | |
parent | 0ebe029b75f40fd40e643f297e1c610771120f29 (diff) |
Add instruction to increase stack size during gcc tests
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9378 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/gcc.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index cd41bce89..0abb1ef10 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -105,6 +105,11 @@ cd ../gcc-build</userinput></screen> critical. Do not skip it under any circumstance.</para> </important> + <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> + <para>Test the results, but do not stop at errors:</para> <screen><userinput remap="test">make -k check</userinput></screen> |