mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-18 19:29:21 +01:00
Linker name depends on target system, not host system
This commit is contained in:
parent
d2eb97b78a
commit
f33eca9bf1
@ -47,11 +47,11 @@
|
|||||||
for x86_64, create a compatibility symbolic link required for proper
|
for x86_64, create a compatibility symbolic link required for proper
|
||||||
operation of the dynamic library loader:</para>
|
operation of the dynamic library loader:</para>
|
||||||
|
|
||||||
<screen arch="default"><userinput remap="pre">case $(uname -m) in
|
<screen arch="default"><userinput remap="pre">case "$LFS_TGT" in
|
||||||
i?86) ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3
|
i?86-*) ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3
|
||||||
;;
|
;;
|
||||||
x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
|
x86_64-*) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
|
||||||
ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
|
ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
|
||||||
;;
|
;;
|
||||||
esac</userinput></screen>
|
esac</userinput></screen>
|
||||||
<!-- no ld-linux.so.2 here as multilib is based on x86_64, not on i686 -->
|
<!-- no ld-linux.so.2 here as multilib is based on x86_64, not on i686 -->
|
||||||
|
Loading…
Reference in New Issue
Block a user