aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/gcc.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 /chapter06/gcc.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 'chapter06/gcc.xml')
-rw-r--r--chapter06/gcc.xml18
1 files changed, 11 insertions, 7 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml
index 013d69c8c..834331a2c 100644
--- a/chapter06/gcc.xml
+++ b/chapter06/gcc.xml
@@ -54,8 +54,7 @@
consistent compiler builds:</para>
<screen><userinput remap="pre">case `uname -m` in
- i?86) sed -i 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' \
- gcc/Makefile.in ;;
+ i?86) sed -i 's/^T_CFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in ;;
esac</userinput></screen>
<para>The <command>fixincludes</command> script is known to occasionally
@@ -74,11 +73,16 @@ cd ../gcc-build</userinput></screen>
<para>Prepare GCC for compilation:</para>
-<screen><userinput remap="configure">../gcc-&gcc-version;/configure --prefix=/usr \
- --libexecdir=/usr/lib --enable-shared \
- --enable-threads=posix --enable-__cxa_atexit \
- --enable-clocale=gnu --enable-languages=c,c++ \
- --disable-multilib --disable-bootstrap --with-system-zlib</userinput></screen>
+<screen><userinput remap="configure">../gcc-&gcc-version;/configure --prefix=/usr \
+ --libexecdir=/usr/lib \
+ --enable-shared \
+ --enable-threads=posix \
+ --enable-__cxa_atexit \
+ --enable-clocale=gnu \
+ --enable-languages=c,c++ \
+ --disable-multilib \
+ --disable-bootstrap \
+ --with-system-zlib</userinput></screen>
<para>Note that for other languages, there are some prerequisites that
are not available. See the BLFS Book for instructions on how to