diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-08-03 16:37:17 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2014-08-03 16:37:17 +0000 |
commit | 8a8177f9b93774426694ffd5b72e4f8aef4f316d (patch) | |
tree | 8d38d770a4491d52b6337cabaf64bf60ffa31202 /chapter05/gcc-pass1.xml | |
parent | 0bf4dfe63c985c180eaa7feadf6a4703f2dc9fd4 (diff) |
Intermediate commit to test a change to gcc.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10672 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gcc-pass1.xml')
-rw-r--r-- | chapter05/gcc-pass1.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index b0fd383f8..49612eba7 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -105,6 +105,10 @@ done</userinput></screen> <screen><userinput remap="pre">sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure</userinput></screen> + <para>Also fix a problem identified upstream:</para> + +<screen><userinput remap="pre">sed -i 's/if \((code.*))\)/if (\1 \&\& \!DEBUG_INSN_P (insn))/' gcc/sched-deps.c</userinput></screen> + <para>The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory:</para> |