diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-02-26 18:48:55 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2018-02-26 18:48:55 +0000 |
commit | e8b732abebb553fa0dc9a671048b8462df819b9a (patch) | |
tree | 2be23ec7bc94dc576da899c02947d409c4b3307b /chapter05 | |
parent | 1059bade483b09d09f4ba773bf5b78ef32bcfeea (diff) |
Fix references to both 32-bit and 64-bit systems to list 64-bit examples first.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11377 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/gcc-pass2.xml | 7 | ||||
-rw-r--r-- | chapter05/glibc.xml | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index 82d2eb552..1ecdce9da 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -197,11 +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/lib/ld-linux.so.2]</computeroutput></screen> +<screen><computeroutput>[Requesting program interpreter: /tools/lib64/ld-linux.so.2]</computeroutput></screen> - <para>Note that <filename class="directory">/tools/lib</filename>, or - <filename class="directory">/tools/lib64</filename> for 64-bit machines - appears as the prefix of the dynamic linker.</para> + <para>Note that <filename class="directory">/tools/lib</filename> wiil + be the prefix of the dynamic linker 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 diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml index 8002fae35..09636a1e3 100644 --- a/chapter05/glibc.xml +++ b/chapter05/glibc.xml @@ -159,10 +159,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/lib/ld-linux.so.2]</computeroutput></screen> +<screen><computeroutput>[Requesting program interpreter: /tools/lib64/ld-linux-x86-64.so.2]</computeroutput></screen> - <para>Note that for 64-bit machines, the interpreter name will be - <filename>/tools/lib64/ld-linux-x86-64.so.2</filename>.</para> + <para>Note that for 32-bit machines, the interpreter name will be + <filename>/tools/lib/ld-linux.so.2</filename>.</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 |