Ignore:
Timestamp:
07/23/2007 10:04:42 PM (17 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
dde6e423
Parents:
1218687
Message:

Some adjustments that were missed the first time:

  • Changed instances of dynamic linker name
  • Changed instances of target triplet
  • Update gcc pure64_specs patch
  • Use gcc pure64 patch in final gcc
  • Use --disable-multilib in final gcc and binutils
  • Explicitly tell Glibc to use /lib and /usr/lib, instead of defaults of /lib64 and /usr/lib64

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/x86_64/BOOK@8232 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/readjusting.xml

    r1218687 r2b75709a  
    4040  <important>
    4141    <para>If working on a platform where the name of the dynamic linker is
    42     something other than <filename class="libraryfile">ld-linux.so.2</filename>,
    43     substitute <quote>ld-linux.so.2</quote> with the name of the platform's
     42    something other than <filename class="libraryfile">ld-linux-x86-64.so.2</filename>,
     43    substitute <quote>ld-linux-x86-64.so.2</quote> with the name of the platform's
    4444    dynamic linker in the following commands. Refer to <xref
    4545    linkend="ch-tools-toolchaintechnotes" role=","/> if necessary.</para>
     
    4747
    4848<screen><userinput>gcc -dumpspecs | sed \
    49     -e 's@/tools/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' \
     49    -e 's@/tools/lib/ld-linux-x86-64.so.2@/lib/ld-linux-x86-64.so.2@g' \
    5050    -e '/\*startfile_prefix_spec:/{n;s@.*@/usr/lib/ @}' \
    5151    -e '/\*cpp:/{n;s@$@ -isystem /usr/include@}' &gt; \
     
    6767  platform-specific differences in dynamic linker name):</para>
    6868
    69 <screen os="c"><computeroutput>[Requesting program interpreter: /lib/ld-linux.so.2]</computeroutput></screen>
     69<screen os="c"><computeroutput>[Requesting program interpreter: /lib/ld-linux-x86-64.so.2]</computeroutput></screen>
    7070
    7171  <para>Note that <filename class="directory">/lib</filename> is now
     
    100100  and the output of the last command will be:</para>
    101101
    102 <screen><computeroutput>SEARCH_DIR("/tools/i686-pc-linux-gnu/lib")
     102<screen><computeroutput>SEARCH_DIR("/tools/x86_64-unknown-linux-gnu/lib")
    103103SEARCH_DIR("/usr/lib")
    104104SEARCH_DIR("/lib");</computeroutput></screen>
     
    121121  platform-specific differences in dynamic linker name):</para>
    122122
    123 <screen os="s"><computeroutput>found ld-linux.so.2 at /lib/ld-linux.so.2</computeroutput></screen>
     123<screen os="s"><computeroutput>found ld-linux-x86-64.so.2 at /lib/ld-linux-x86-64.so.2</computeroutput></screen>
    124124
    125125  <para os="t">If the output does not appear as shown above or is not received
Note: See TracChangeset for help on using the changeset viewer.