diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-05-17 03:20:56 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-05-17 03:20:56 +0000 |
commit | 07312f6eec9cd6e0f5581bbf5720c8416cea70f2 (patch) | |
tree | 8462d9fd11463e443734d54ce18834154a95a1c8 /chapter06/gcc.xml | |
parent | fddfb520822967ae5afc28c92c8f3ff862851a42 (diff) |
Correct bootstrap explanation in gcc sections. Thanks to Chris Staub.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8883 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/gcc.xml')
-rw-r--r-- | chapter06/gcc.xml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index dc4e01ede..101a43d63 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -48,12 +48,10 @@ <screen><userinput remap="pre">sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen> - <para>For x86 machines, the bootstrap build performed in - <xref linkend="ch-tools-gcc-pass2"/> - built GCC with the <option>-fomit-frame-pointer</option> compiler flag. - Non-bootstrap builds omit this flag by default, so apply the following - <command>sed</command> to use it in order to ensure consistent compiler - builds:</para> + <para>As in <xref linkend="ch-tools-gcc-pass2"/>, apply the following + <command>sed</command> to force the build to use the + <option>-fomit-frame-pointer</option> compiler flag in order to ensure + consistent compiler builds:</para> <screen><userinput remap="pre">case `uname -m` in i?86) sed -i 's/^XCFLAGS =$/& -fomit-frame-pointer/' \ |