mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-04 10:50:07 +00:00
5b118558f9
To avoid having a ELFv2 binary accidentally picking up an old ABI ld.so, this patch bumps the soname to ld64.so.2. In theory (or for testing purposes) this will also allow co-installing ld.so versions for both ABIs on the same system. Note that the kernel will already be able to load executables of both ABIs. However, there is currently no plan to use that theoretical possibility in a any supported distribution environment ... Note that in order to check which ABI to use, we need to invoke the compiler to check the _CALL_ELF macro; this is done in a new configure check in sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac, replacing the hard-coded value of default-abi in the Makefile.
16 lines
591 B
Plaintext
16 lines
591 B
Plaintext
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
|
# Local configure fragment for sysdeps/unix/sysv/linux/powerpc/powerpc64/.
|
|
|
|
# Define default-abi according to compiler flags.
|
|
AC_CACHE_CHECK([whether the compiler is using the PowerPC64 ELFv2 ABI],
|
|
[libc_cv_ppc64_elfv2_abi],
|
|
[AC_EGREP_CPP(yes,[#if _CALL_ELF == 2
|
|
yes
|
|
#endif
|
|
], libc_cv_ppc64_elfv2_abi=yes, libc_cv_ppc64_elfv2_abi=no)])
|
|
if test $libc_cv_ppc64_elfv2_abi = yes; then
|
|
LIBC_CONFIG_VAR([default-abi], [64-v2])
|
|
else
|
|
LIBC_CONFIG_VAR([default-abi], [64-v1])
|
|
fi
|