mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 10:20:15 +00:00
d3b36017d4
The hard-float ABI will now use /lib/ld-linux-armhf.so.3. We detect the use of the hard-float ABI and select the appropriate dynamic linker name. You must have a new or patched compiler which also uses the new dynamic loader name when the hard-float ABI is selected.
10 lines
312 B
Plaintext
10 lines
312 B
Plaintext
arm.*-.*-linux-gnueabi.* DEFAULT GLIBC_2.4
|
|
|
|
%ifdef HAVE_ARM_PCS_VFP
|
|
# The EABI-derived hard-float ABI uses a new dynamic linker.
|
|
arm.*-.*-linux-gnueabi.* ld=ld-linux-armhf.so.3
|
|
%else
|
|
# The EABI-derived soft-float ABI continues to use ld-linux.so.3.
|
|
arm.*-.*-linux-gnueabi.* ld=ld-linux.so.3
|
|
%endif
|