diff options
Diffstat (limited to 'chapter05/gcc-pass1.xml')
-rw-r--r-- | chapter05/gcc-pass1.xml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index c862d3f73..d9c6175ff 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -62,7 +62,7 @@ cd ../gcc-build</userinput></screen> <screen><userinput remap="configure">CC="gcc -B/usr/bin/" ../gcc-&gcc-version;/configure --prefix=/tools \ --with-local-prefix=/tools --disable-nls --disable-shared --disable-libssp \ - --enable-languages=c</userinput></screen> + --disable-multilib --enable-languages=c</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> @@ -114,6 +114,13 @@ cd ../gcc-build</userinput></screen> </listitem> </varlistentry> + <varlistentry> + <term><parameter>--disable-multilib</parameter></term> + <listitem> + <para>We currently only want to build support for 64-bit libraries.</para> + </listitem> + </varlistentry> + </variablelist> <para>The following command will compile GCC not once, but several times. It |