ld: Add lib32 directories for 32-bit emulation on FreeBSD/amd64

GNU ld currently fails to link 32-bit executables on FreeBSD/amd64 when
the linked libraries have dependencies on shared objects themselves:

$ gcc -m32 -o ei ei.c -lexecinfo
/var/gcc/binutils/amd64/lib/gcc/amd64-pc-freebsd14.0/13.2.0/../../../../amd64-pc-freebsd14.0/bin/ld:
warning: libelf.so.2, needed by /usr/lib/../lib32/libexecinfo.so, not found
(try using -rpath or -rpath-link)
/var/gcc/binutils/amd64/lib/gcc/amd64-pc-freebsd14.0/13.2.0/../../../../amd64-pc-freebsd14.0/bin/ld:
/usr/lib/../lib32/libexecinfo.so: undefined reference to `elf_begin@R1.0'
[...]

Fixed by handling FreeBSD/amd64 like Linux/x86.

Tested on amd64-pc-freebsd14.0.
This commit is contained in:
Rainer Orth 2023-12-21 12:51:26 +01:00
parent bfcfa995f9
commit 333a6b1a63
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2023-12-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* emulparams/elf_i386.sh (LIBPATH_SUFFIX, LIBPATH_SUFFIX_SKIP)
[x86_64*-freebsd*]: Set for i386 emulation.
2023-12-12 Georg-Johann Lay <avr@gjlay.de>
PR 31124

View File

@ -39,4 +39,12 @@ case "$target" in
;;
esac
;;
x86_64*-freebsd*)
case "$EMULATION_NAME" in
*i386*)
LIBPATH_SUFFIX=32
LIBPATH_SUFFIX_SKIP=64
;;
esac
;;
esac