aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-01-30 12:51:22 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2005-01-30 12:51:22 +0000
commitd72e04ae7c868b734e3ad39982b169c71444f541 (patch)
tree8009bd8eb42c8b44e5c78decfd41c579e74a2c3b /chapter05
parentbce08efc719e0824225490272cefa848a2313b24 (diff)
Added <literal> tags.
Added NEW comments to commands that differs from testing. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4599 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/adjusting.xml3
-rw-r--r--chapter05/binutils-pass1.xml3
-rw-r--r--chapter05/binutils-pass2.xml2
-rw-r--r--chapter05/gcc-pass1.xml1
-rw-r--r--chapter05/gcc-pass2.xml6
5 files changed, 10 insertions, 5 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml
index 473d895d9..12da057ac 100644
--- a/chapter05/adjusting.xml
+++ b/chapter05/adjusting.xml
@@ -32,7 +32,8 @@ readelf -l a.out | grep ': /tools'</userinput></screen>
<para>The output of the last command will be of the form:</para>
-<screen><computeroutput>[Requesting program interpreter: /tools/lib/ld-linux.so.2]</computeroutput></screen>
+<screen><computeroutput>[Requesting program interpreter:
+ /tools/lib/ld-linux.so.2]</computeroutput></screen>
<para>Remove the test files:</para>
diff --git a/chapter05/binutils-pass1.xml b/chapter05/binutils-pass1.xml
index fa8c23f2e..8d891918e 100644
--- a/chapter05/binutils-pass1.xml
+++ b/chapter05/binutils-pass1.xml
@@ -32,7 +32,8 @@ cd ../binutils-build</userinput></screen>
<para>Now prepare Binutils for compilation:</para>
-<screen><userinput>../binutils-&binutils-version;/configure --prefix=/tools --disable-nls</userinput></screen>
+<screen><userinput>../binutils-&binutils-version;/configure --prefix=/tools \
+ --disable-nls</userinput></screen>
<para>Continue with compiling the package:</para>
diff --git a/chapter05/binutils-pass2.xml b/chapter05/binutils-pass2.xml
index 9c79ecf2c..21c890903 100644
--- a/chapter05/binutils-pass2.xml
+++ b/chapter05/binutils-pass2.xml
@@ -36,6 +36,7 @@ cd ../binutils-build</userinput></screen>
<para>Test the results:</para>
+<!-- NEW -->
<screen><userinput>make -k check</userinput></screen>
<para>Except for a few known failures, the binutils tests should all pass. The
@@ -44,6 +45,7 @@ exceptions to this rule are as follows:</para>
<screen><computeroutput>* 5 FAIL (unexpected failure) for visibility
* 1 FAIL for selective4
* 1 FAIL for selective5</computeroutput></screen>
+<!-- END NEW-->
<para>And install the package:</para>
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index c878bd4b2..8f041f7fe 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -27,6 +27,7 @@ cd ../gcc-build</userinput></screen>
<para>Prepare GCC for compilation:</para>
+<!--NEW-->
<screen><userinput>CC="gcc -B/usr/bin" ../gcc-&gcc-version;/configure \
--prefix=/tools --libexecdir=/tools/lib \
--with-local-prefix=/tools --disable-nls \
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml
index 61bd3e9b6..314727252 100644
--- a/chapter05/gcc-pass2.xml
+++ b/chapter05/gcc-pass2.xml
@@ -38,9 +38,9 @@ cd ../gcc-build</userinput></screen>
<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>
+ --enable-clocale=gnu --enable-shared \
+ --enable-threads=posix --enable-__cxa_atexit \
+ --enable-languages=c,c++ --disable-libstdcxx-pch</userinput></screen>
<para>Compile the package:</para>