aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gcc-pass1.xml4
-rw-r--r--chapter05/gcc-pass2.xml8
2 files changed, 6 insertions, 6 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index 10f801167..b6138fb7a 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -38,8 +38,8 @@ cd ../gcc-build</userinput></screen>
<para>Prepare GCC for compilation:</para>
<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
- --libexecdir=/tools/lib --with-local-prefix=/tools \
- --disable-nls --enable-shared --enable-languages=c</userinput></screen>
+ --with-local-prefix=/tools --disable-nls --enable-shared \
+ --enable-languages=c</userinput></screen>
<para>The meaning of the configure options:</para>
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml
index f62886115..46e888423 100644
--- a/chapter05/gcc-pass2.xml
+++ b/chapter05/gcc-pass2.xml
@@ -102,10 +102,10 @@ variables that override the default optimization flags.</para>
<para>Now prepare GCC for compilation:</para>
<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
- --libexecdir=/tools/lib --with-local-prefix=/tools \
- --enable-clocale=gnu --enable-shared \
- --enable-threads=posix --enable-__cxa_atexit \
- --enable-languages=c,c++ --disable-libstdcxx-pch</userinput></screen>
+ --with-local-prefix=/tools --enable-clocale=gnu \
+ --enable-shared --enable-threads=posix \
+ --enable-__cxa_atexit --enable-languages=c,c++ \
+ --disable-libstdcxx-pch</userinput></screen>
<para>The meaning of the new configure options:</para>