diff options
Diffstat (limited to 'chapter05/gcc-pass2.xml')
-rw-r--r-- | chapter05/gcc-pass2.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index 8531e2332..eff28cabb 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -103,11 +103,15 @@ tar -xf ../gmp-&gmp-version;.tar.xz mv -v gmp-&gmp-version; gmp tar -xf ../mpc-&mpc-version;.tar.gz mv -v mpc-&mpc-version; mpc</userinput></screen> -<!-- - <para>As in the first build of GCC, 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> + Now fix a problem introduced by aother package after this version + of gcc was released: + </para> + +<screen><userinput remap="pre">sed -e '1161 s|^|//|' \ + -i libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc</userinput></screen> + <para>Create a separate build directory again:</para> <screen><userinput remap="pre">mkdir -v build |