aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gcc-pass1.xml20
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>