aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/gcc-pass1.xml
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2012-03-09 20:12:34 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2012-03-09 20:12:34 +0000
commit9f5aaf72b238f5cfff30bc412caa014f1eac0bc0 (patch)
treea6a1f0208a7341a6b1448bac6b10ba60720cbe89 /chapter05/gcc-pass1.xml
parenteb1ffed9b2e3cbbd1ce5ed50f211f83cf6850554 (diff)
Add whitespace for better readability of instructions
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9771 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gcc-pass1.xml')
-rw-r--r--chapter05/gcc-pass1.xml28
1 files changed, 18 insertions, 10 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index 31703a184..d3efd71d6 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -76,14 +76,23 @@ cd ../gcc-build</userinput></screen>
<para>Prepare GCC for compilation:</para>
-<screen><userinput remap="configure">../gcc-&gcc-version;/configure \
- --target=$LFS_TGT --prefix=/tools \
- --disable-nls --disable-shared --disable-multilib \
- --disable-decimal-float --disable-threads \
- --disable-libmudflap --disable-libssp \
- --disable-libgomp --disable-libquadmath \
- --disable-target-libiberty --disable-target-zlib \
- --enable-languages=c --without-ppl --without-cloog \
+<screen><userinput remap="configure">../gcc-&gcc-version;/configure \
+ --target=$LFS_TGT \
+ --prefix=/tools \
+ --disable-nls \
+ --disable-shared \
+ --disable-multilib \
+ --disable-decimal-float \
+ --disable-threads \
+ --disable-libmudflap \
+ --disable-libssp \
+ --disable-libgomp \
+ --disable-libquadmath \
+ --disable-target-libiberty \
+ --disable-target-zlib \
+ --enable-languages=c \
+ --without-ppl \
+ --without-cloog \
--with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
--with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
@@ -159,8 +168,7 @@ cd ../gcc-build</userinput></screen>
since that file will end up containing the objects normally contained in
<filename>libgcc_eh.a</filename>:</para>
-<screen><userinput remap="install">ln -vs libgcc.a `$LFS_TGT-gcc -print-libgcc-file-name | \
- sed 's/libgcc/&amp;_eh/'`</userinput></screen>
+<screen><userinput remap="install">ln -vs libgcc.a `$LFS_TGT-gcc -print-libgcc-file-name | sed 's/libgcc/&amp;_eh/'`</userinput></screen>
</sect2>