diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-09-15 17:57:02 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-09-15 17:57:02 +0000 |
commit | 530aea32ced32c4e007b9066e76cc273cd9f4ed2 (patch) | |
tree | 5e5ddd6635e960ac6651e84adbc375b43da4ca63 /chapter06/gcc.xml | |
parent | 4c257394980653f9bb131b903c0e69fd9466391e (diff) |
Minor text change
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10752 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/gcc.xml')
-rw-r--r-- | chapter06/gcc.xml | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index bc9810109..eed5238a5 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -46,21 +46,11 @@ <screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&\& \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen> - <para>First fix a problem identified upstream that causes some + <para>Now fix a problem identified upstream that causes some programs to fail:</para> <screen><userinput remap="pre">patch -Np1 -i ../&gcc-upstream-patch;</userinput></screen> -<!-- - <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/^T_CFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in ;; -esac</userinput></screen> ---> <para>The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory:</para> |