Ignore:
Timestamp:
09/05/2004 11:18:43 AM (20 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
6.0
Children:
752f4e5
Parents:
a9e0b22
Message:

Tags corrections, Chapter 5.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/toolchaintechnotes.xml

    ra9e0b22 re097438  
    4040needed by a program, prepares the program to run, and then runs it.
    4141The name of the dynamic linker will usually be
    42 <filename>ld-linux.so.2</filename>. On platforms that are less
    43 prevalent, the name might be <filename>ld.so.1</filename>, and newer
    44 64 bit platforms might be named something else entirely. The name of
     42<filename class="libraryfile">ld-linux.so.2</filename>. On platforms that are less
     43prevalent, the name might be <filename class="libraryfile">ld.so.1</filename>,
     44and newer 64 bit platforms might be named something else entirely. The name of
    4545the platform's dynamic linker can be determined by looking in the
    4646<filename class="directory">/lib</filename> directory on the host
     
    8787linker is its library search order. Detailed information can be
    8888obtained from <command>ld</command> by passing it the
    89 <parameter>--verbose</parameter> flag. For example, an <command>ld
    90 --verbose | grep SEARCH</command> will illustrate the current search
     89<parameter>--verbose</parameter> flag. For example, an <userinput>ld
     90--verbose | grep SEARCH</userinput> will illustrate the current search
    9191paths and their order. It shows which files are linked by
    9292<command>ld</command> by compiling a dummy program and passing the
     
    120120considerations for building Glibc are the compiler, binary tools, and
    121121kernel headers. The compiler is generally not an issue since Glibc
    122 will always use the <command>gcc</command> found in a PATH directory.
     122will always use the <command>gcc</command> found in a
     123<envar>PATH</envar> directory.
    123124The binary tools and kernel headers can be a bit more complicated.
    124125Therefore, take no risks and use the available configure switches to
Note: See TracChangeset for help on using the changeset viewer.