Browse Source

More accurate results for the sanity tests.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/x86_64/BOOK@8249 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Jeremy Huntwork 18 năm trước cách đây
mục cha
commit
d05500f926

+ 3 - 0
chapter01/changelog.xml

@@ -39,6 +39,9 @@
     <listitem>
     <listitem>
       <para>2007-07-25</para>
       <para>2007-07-25</para>
       <itemizedlist>
       <itemizedlist>
+        <listitem>
+          <para>[jhuntwork] - More accurate results for the sanity tests.</para>
+        </listitem>
         <listitem>
         <listitem>
           <para>[jhuntwork] - Create the /tools/lib64 symlink after installing binutils.</para>
           <para>[jhuntwork] - Create the /tools/lib64 symlink after installing binutils.</para>
         </listitem>
         </listitem>

+ 3 - 3
chapter05/adjusting.xml

@@ -36,8 +36,8 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen>
 
 
   <para>For the sake of accuracy, it is recommended to use a copy-and-paste
   <para>For the sake of accuracy, it is recommended to use a copy-and-paste
   method when issuing the following command. Be sure to visually inspect the
   method when issuing the following command. Be sure to visually inspect the
-  specs file and verify that all occurrences of <quote>/lib/ld-linux-x86-64.so.2</quote>
-  have been replaced with <quote>/tools/lib/ld-linux-x86-64.so.2</quote>:</para>
+  specs file and verify that all occurrences of <quote>/lib64/ld-linux-x86-64.so.2</quote>
+  have been replaced with <quote>/tools/lib64/ld-linux-x86-64.so.2</quote>:</para>
 
 
   <important>
   <important>
     <para>If working on a platform where the name of the dynamic linker is
     <para>If working on a platform where the name of the dynamic linker is
@@ -84,7 +84,7 @@ readelf -l a.out | grep ': /tools'</userinput></screen>
     and the output of the last command will be of the form:</para>
     and the output of the last command will be of the form:</para>
 
 
 <screen><computeroutput>[Requesting program interpreter:
 <screen><computeroutput>[Requesting program interpreter:
-    /tools/lib/ld-linux-x86-64.so.2]</computeroutput></screen>
+    /tools/lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
 
 
     <para>Note that <filename class="directory">/tools/lib</filename>
     <para>Note that <filename class="directory">/tools/lib</filename>
     appears as the prefix of the dynamic linker.</para>
     appears as the prefix of the dynamic linker.</para>

+ 3 - 3
chapter06/gcc.xml

@@ -154,9 +154,9 @@ cd ../gcc-build</userinput></screen>
     href="readjusting.xml"
     href="readjusting.xml"
     xpointer="xpointer(//*[@os='f'])"/>
     xpointer="xpointer(//*[@os='f'])"/>
 
 
-<screen><computeroutput>/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../crt1.o succeeded
-/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../crti.o succeeded
-/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../crtn.o succeeded</computeroutput></screen>
+<screen><computeroutput>/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../../lib64/crt1.o succeeded
+/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../../lib64/crti.o succeeded
+/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../../lib64/crtn.o succeeded</computeroutput></screen>
 
 
     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     href="readjusting.xml"
     href="readjusting.xml"

+ 2 - 2
chapter06/readjusting.xml

@@ -66,7 +66,7 @@ readelf -l a.out | grep ': /lib'</userinput></screen>
   and the output of the last command will be (allowing for
   and the output of the last command will be (allowing for
   platform-specific differences in dynamic linker name):</para>
   platform-specific differences in dynamic linker name):</para>
 
 
-<screen os="c"><computeroutput>[Requesting program interpreter: /lib/ld-linux-x86-64.so.2]</computeroutput></screen>
+<screen os="c"><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
 
 
   <para>Note that <filename class="directory">/lib</filename> is now
   <para>Note that <filename class="directory">/lib</filename> is now
   the prefix of our dynamic linker.</para>
   the prefix of our dynamic linker.</para>
@@ -120,7 +120,7 @@ SEARCH_DIR("/lib");</computeroutput></screen>
   and the output of the last command will be (allowing for
   and the output of the last command will be (allowing for
   platform-specific differences in dynamic linker name):</para>
   platform-specific differences in dynamic linker name):</para>
 
 
-<screen os="s"><computeroutput>found ld-linux-x86-64.so.2 at /lib/ld-linux-x86-64.so.2</computeroutput></screen>
+<screen os="s"><computeroutput>found ld-linux-x86-64.so.2 at /lib64/ld-linux-x86-64.so.2</computeroutput></screen>
 
 
   <para os="t">If the output does not appear as shown above or is not received
   <para os="t">If the output does not appear as shown above or is not received
   at all, then something is seriously wrong. Investigate and retrace the
   at all, then something is seriously wrong. Investigate and retrace the