diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-02-02 01:15:18 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-02-02 01:15:18 +0000 |
commit | 5e32d3008af234cbd0f7dea021d0199005f22282 (patch) | |
tree | a5576f86240ecea0f304dabfb944dcd11334fa56 /chapter05 | |
parent | 7cd2b8b1524231ca8691cc3a375392b9c21bc0a3 (diff) |
Update to vim-8.2.0190.
Update to binutils-2.34.
Update to glibc-2.31.
Update to linux-5.5.1.
Update to bc-2.5.3.
Update to iproute2-5.5.0.
Update to util-linux 2.35.1.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11738 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-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 |