Changeset f33eca9


Ignore:
Timestamp:
08/30/2024 08:20:37 AM (2 weeks ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib, xry111/multilib
Children:
f54ecb3
Parents:
d2eb97b
Message:

Linker name depends on target system, not host system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/glibc.xml

    rd2eb97b rf33eca9  
    4848    operation of the dynamic library loader:</para>
    4949
    50 <screen arch="default"><userinput remap="pre">case $(uname -m) in
    51     i?86)   ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3
     50<screen arch="default"><userinput remap="pre">case "$LFS_TGT" in
     51    i?86-*)   ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3
    5252    ;;
    53     x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
    54             ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
     53    x86_64-*) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
     54              ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
    5555    ;;
    5656esac</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.