diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2015-06-24 00:56:29 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2015-06-24 00:56:29 +0000 |
commit | 05a034447260e00799a3b0ceccc1bbf0ad61f76a (patch) | |
tree | d7882c01069e4e674bdae65ff62934d4f275d77d /chapter05 | |
parent | 5b07f85ce40945d09a0d3dafeef49e37d70afae8 (diff) |
Update to tzdata-2015e.
Update to eudev-3.1.2.
Update to mpfr-3.1.3.
Update to linux-4.1.
Simplify gcc-pass1 instructions. Thanks to Pierre Labastie for the patch.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10918 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/gcc-pass1.xml | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 62b94ebe2..da6ea0743 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -135,13 +135,10 @@ cd ../gcc-build</userinput></screen> --disable-threads \ --disable-libatomic \ --disable-libgomp \ - --disable-libitm \ --disable-libquadmath \ - --disable-libsanitizer \ --disable-libssp \ --disable-libvtv \ - --disable-libcilkrts \ - --disable-libstdc++-v3 \ + --disable-libstdcxx \ --enable-languages=c,c++</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> @@ -198,17 +195,14 @@ cd ../gcc-build</userinput></screen> <varlistentry> <term><parameter>--disable-decimal-float, --disable-threads, - --disable-libatomic, --disable-libgomp, --disable-libitm, - --disable-libquadmath, --disable-libsanitizer, - --disable-libssp, --disable-libvtv, --disable-libcilkrts, - --disable-libstdc++-v3</parameter></term> + --disable-libatomic, --disable-libgomp, --disable-libquadmath, + --disable-libssp, --disable-libvtv, --disable-libstdcxx</parameter></term> <listitem> <para>These switches disable support for the decimal floating point - extension, threading, libatomic, libgomp, libitm, - libquadmath, libsanitizer, libssp, libvtv, libcilkrts - and the C++ standard library respectively. These features will fail - to compile when building a cross-compiler and are not necessary for - the task of cross-compiling the temporary libc.</para> + extension, threading, libatomic, libgomp, libquadmath, libssp, + libvtv, and the C++ standard library respectively. These features + will fail to compile when building a cross-compiler and are not + necessary for the task of cross-compiling the temporary libc.</para> </listitem> </varlistentry> |