aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2018-03-30 16:56:44 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2018-03-30 16:56:44 +0000
commitbe80d9cdee081dfacc35f945f8bad646d1d05907 (patch)
treed90d010d4b4fcbc307ca4b526104e3aaedf9d0ab
parentbbc34f8132801c321ad563128bafed6b7456b3e3 (diff)
Clarify dynamic linker name in gcc-pass2
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11392 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter05/gcc-pass2.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml
index 1ecdce9da..b5c56c161 100644
--- a/chapter05/gcc-pass2.xml
+++ b/chapter05/gcc-pass2.xml
@@ -197,10 +197,10 @@ readelf -l a.out | grep ': /tools'</userinput></screen>
<para>If everything is working correctly, there should be no errors,
and the output of the last command will be of the form:</para>
-<screen><computeroutput>[Requesting program interpreter: /tools/lib64/ld-linux.so.2]</computeroutput></screen>
+<screen><computeroutput>[Requesting program interpreter: /tools/lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
- <para>Note that <filename class="directory">/tools/lib</filename> wiil
- be the prefix of the dynamic linker for 32-bit machines.</para>
+ <para>Note that the dynamic linker will be /tools/lib/ld-linux.so.2
+ for 32-bit machines.</para>
<para>If the output is not shown as above or there was no output at all,
then something is wrong. Investigate and retrace the steps to find out