Changeset da2f9fe for chapter06/gcc.xml


Ignore:
Timestamp:
08/07/2007 08:24:04 PM (17 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
71f6077
Parents:
400af5a8
Message:
  • Upgraded to HJL Binutils-2.17.50.0.18
  • Initial update of commands to work with both x86 and x86_64

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/gcc.xml

    r400af5a8 rda2f9fe  
    155155    xpointer="xpointer(//*[@os='f'])"/>
    156156
    157 <screen><computeroutput>/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../../lib64/crt1.o succeeded
    158 /usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../../lib64/crti.o succeeded
    159 /usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../../lib64/crtn.o succeeded</computeroutput></screen>
     157<screen><computeroutput>/usr/lib/gcc/x86_64-unknown-linux-gnu/&gcc-version;/../../../crt1.o succeeded
     158/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crti.o succeeded
     159/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/../../../crtn.o succeeded</computeroutput></screen>
     160
     161  <para>Depending on your machine architecture, the above may differ slightly,
     162  the difference usually being the name of the directory
     163  after <filename class="directory">/usr/lib/gcc</filename>. If your machine is
     164  a 64-bit system, you may also see a directory named <filename class="directory">lib64</filename>
     165  towards the end of the string. The important thing to
     166  look for here is that gcc has found all three <filename>crt*.o</filename> files under
     167  the <filename class="directory">/usr/lib</filename> directory.</para>
    160168
    161169    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
     
    174182 /usr/include</computeroutput></screen>
    175183
     184   <para>Again, note that the directory named after your target triplet may be
     185   different than the above, depending on your architecture.</para>
     186
    176187    <xi:include xmlns:xi="http://www.w3.org/2003/XInclude"
    177188    href="readjusting.xml"
     
    185196    href="readjusting.xml"
    186197    xpointer="xpointer(//*[@os='k'])"/>
     198
     199<screen><computeroutput>SEARCH_DIR("/usr/i686-pc-linux-gnu/lib")
     200SEARCH_DIR("/usr/local/lib")
     201SEARCH_DIR("/lib")
     202SEARCH_DIR("/usr/lib");</computeroutput></screen>
     203
     204   <para>A 64-bit system may see a few more directories. For example, here
     205   is the output from a x86_64 machine:</para>
    187206
    188207<screen><computeroutput>SEARCH_DIR("/usr/x86_64-unknown-linux-gnu/lib64")
Note: See TracChangeset for help on using the changeset viewer.