diff options
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/gcc-pass1.xml | 8 | ||||
-rw-r--r-- | chapter05/glibc.xml | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 8015c1b50..64077a414 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -135,6 +135,7 @@ cd build</userinput></screen> --disable-threads \ --disable-libatomic \ --disable-libgomp \ + --disable-libmpx \ --disable-libquadmath \ --disable-libssp \ --disable-libvtv \ @@ -195,11 +196,12 @@ cd build</userinput></screen> <varlistentry> <term><parameter>--disable-decimal-float, --disable-threads, - --disable-libatomic, --disable-libgomp, --disable-libquadmath, - --disable-libssp, --disable-libvtv, --disable-libstdcxx</parameter></term> + --disable-libatomic, --disable-libgomp, --disable-libmpx + --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, libquadmath, libssp, + extension, threading, libatomic, libgomp, libmpx, 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> diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml index 63000bf70..53865f690 100644 --- a/chapter05/glibc.xml +++ b/chapter05/glibc.xml @@ -47,6 +47,10 @@ <screen><userinput remap="pre">patch -Np1 -i ../&glibc-upstream-patch;</userinput></screen> --> + <para>Fix some problems identified upstream:</para> + +<screen><userinput remap="pre">patch -Np1 -i ../&glibc-upstream-patch;</userinput></screen> + <para>The Glibc documentation recommends building Glibc in a dedicated build directory:</para> |