2022-07-19 01:22:07 +00:00
|
|
|
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
|
|
|
|
# Local configure fragment for sysdeps/loongarch/elf.
|
|
|
|
|
|
|
|
dnl It is always possible to access static and hidden symbols in an
|
|
|
|
dnl position independent way.
|
|
|
|
AC_DEFINE(HIDDEN_VAR_NEEDS_DYNAMIC_RELOC)
|
2022-09-24 07:45:34 +00:00
|
|
|
|
|
|
|
dnl Test if the toolchain is new enough for static PIE.
|
|
|
|
dnl We need a GAS supporting explicit reloc (older GAS produces stack-based
|
|
|
|
dnl reloc and triggers an internal error in the linker). And, we need GCC to
|
2023-08-26 16:36:49 +00:00
|
|
|
dnl pass the correct linker flags for static PIE. We strictly require GAS >=
|
|
|
|
dnl 2.41 so we don't need to check the assembler capability, but we need to
|
|
|
|
dnl check if GCC is doing the correct thing.
|
|
|
|
AC_CACHE_CHECK([if ${CC-cc} is sufficient to build static PIE on LoongArch],
|
2022-09-24 07:45:34 +00:00
|
|
|
libc_cv_static_pie_on_loongarch, [
|
2023-08-26 16:36:49 +00:00
|
|
|
cat > conftest.S <<\EOF
|
2022-09-24 07:45:34 +00:00
|
|
|
.global _start
|
|
|
|
.type _start, @function
|
|
|
|
_start:
|
2023-07-06 09:25:43 +00:00
|
|
|
li.w $a7, 93
|
2023-08-26 16:36:49 +00:00
|
|
|
li.w $a0, 0
|
2022-09-24 07:45:34 +00:00
|
|
|
syscall 0
|
|
|
|
|
|
|
|
.data
|
|
|
|
x:
|
|
|
|
.word 0
|
|
|
|
/* This should produce an R_LARCH_RELATIVE in the static PIE. */
|
|
|
|
.dword _start
|
|
|
|
EOF
|
LoongArch: Fix the condition to use PC-relative addressing in start.S
A start.o compiled from start.S with -DPIC and no -DSHARED is used by
both crt1.o and rcrt1.o. So the LoongArch static PIE patch
unintentionally introduced PC-relative addressing for main and
__libc_start_main into crt1.o.
While the latest Binutils (trunk, which will be released as 2.40)
supports the PC-relative relocs against an external function by creating
a PLT entry, the 2.39 release branch doesn't (and won't) support this.
An error is raised:
"PLT stub does not represent and symbol not defined."
So, we need the following changes:
1. Check if ld supports the PC-relative relocs against an external
function. If it's not supported, we deem static PIE unsupported.
2. Change start.S. If static PIE is supported, use PC-relative
addressing for main and __libc_start_main and rely on the linker to
create PLT entries. Otherwise, restore the old behavior (using GOT
to address these functions).
An alternative would be adding a new "static-pie-start.S", and some
custom logic into Makefile to build rcrt1.o with it. And, restore
start.S to the state before static PIE change so crt1.o won't contain
PC-relative relocs against external symbols. But I can't see any
benefit of this alternative, so I'd just keep it simple.
Tested by building glibc with the following configurations:
1. Binutils trunk + GCC trunk. Static PIE enabled. All tests
passed.
2. Binutils 2.39 branch + GCC trunk. Static PIE disabled. Tests
related to ifunc failed (it's a known issue). All other tests
passed.
3. Binutils 2.39 branch + GCC 12 branch, cross compilation with
build-many-glibcs.py from x86_64-linux-gnu. Static PIE disabled.
Build succeeded.
2022-10-02 14:23:09 +00:00
|
|
|
|
2022-09-24 07:45:34 +00:00
|
|
|
libc_cv_static_pie_on_loongarch=no
|
2023-08-26 16:36:49 +00:00
|
|
|
if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -static-pie -nostdlib -fPIE -o conftest conftest.S]) \
|
|
|
|
&& AC_TRY_COMMAND([LC_ALL=C $READELF -Wr conftest | grep -q R_LARCH_RELATIVE]) \
|
|
|
|
&& ! AC_TRY_COMMAND([LC_ALL=C $READELF -Wl conftest | grep -q INTERP])
|
2022-09-24 07:45:34 +00:00
|
|
|
then
|
|
|
|
libc_cv_static_pie_on_loongarch=yes
|
|
|
|
fi
|
LoongArch: Fix the condition to use PC-relative addressing in start.S
A start.o compiled from start.S with -DPIC and no -DSHARED is used by
both crt1.o and rcrt1.o. So the LoongArch static PIE patch
unintentionally introduced PC-relative addressing for main and
__libc_start_main into crt1.o.
While the latest Binutils (trunk, which will be released as 2.40)
supports the PC-relative relocs against an external function by creating
a PLT entry, the 2.39 release branch doesn't (and won't) support this.
An error is raised:
"PLT stub does not represent and symbol not defined."
So, we need the following changes:
1. Check if ld supports the PC-relative relocs against an external
function. If it's not supported, we deem static PIE unsupported.
2. Change start.S. If static PIE is supported, use PC-relative
addressing for main and __libc_start_main and rely on the linker to
create PLT entries. Otherwise, restore the old behavior (using GOT
to address these functions).
An alternative would be adding a new "static-pie-start.S", and some
custom logic into Makefile to build rcrt1.o with it. And, restore
start.S to the state before static PIE change so crt1.o won't contain
PC-relative relocs against external symbols. But I can't see any
benefit of this alternative, so I'd just keep it simple.
Tested by building glibc with the following configurations:
1. Binutils trunk + GCC trunk. Static PIE enabled. All tests
passed.
2. Binutils 2.39 branch + GCC trunk. Static PIE disabled. Tests
related to ifunc failed (it's a known issue). All other tests
passed.
3. Binutils 2.39 branch + GCC 12 branch, cross compilation with
build-many-glibcs.py from x86_64-linux-gnu. Static PIE disabled.
Build succeeded.
2022-10-02 14:23:09 +00:00
|
|
|
rm -rf conftest* ])
|
2022-09-24 07:45:34 +00:00
|
|
|
|
|
|
|
if test "$libc_cv_static_pie_on_loongarch" = yes; then
|
|
|
|
AC_DEFINE(SUPPORT_STATIC_PIE)
|
|
|
|
fi
|
2022-09-07 02:33:00 +00:00
|
|
|
|
|
|
|
# Check if gcc supports option -mcmodel=medium.
|
|
|
|
AC_CACHE_CHECK(whether $CC supports option -mcmodel=medium,
|
|
|
|
libc_cv_loongarch_cmodel_medium, [
|
|
|
|
if AC_TRY_COMMAND(${CC-cc} -c $CFLAGS -mcmodel=medium /dev/null 1>&AS_MESSAGE_LOG_FD); then
|
|
|
|
libc_cv_loongarch_cmodel_medium=yes
|
|
|
|
else
|
|
|
|
libc_cv_loongarch_cmodel_medium=no
|
|
|
|
fi])
|
|
|
|
LIBC_CONFIG_VAR([have-cmodel-medium], [$libc_cv_loongarch_cmodel_medium])
|
2023-07-06 08:30:52 +00:00
|
|
|
|
|
|
|
# Check if asm support vector instructions.
|
|
|
|
AC_CACHE_CHECK(for vector support in assembler, libc_cv_loongarch_vec_asm, [dnl
|
|
|
|
cat > conftest.s <<\EOF
|
|
|
|
vld $vr0, $sp, 0
|
|
|
|
EOF
|
|
|
|
if AC_TRY_COMMAND(${CC-cc} -c $CFLAGS conftest.s -o conftest 1>&AS_MESSAGE_LOG_FD); then
|
|
|
|
libc_cv_loongarch_vec_asm=yes
|
|
|
|
else
|
|
|
|
libc_cv_loongarch_vec_asm=no
|
|
|
|
fi
|
|
|
|
rm -f conftest*])
|
2023-08-08 06:15:43 +00:00
|
|
|
if test $libc_cv_loongarch_vec_asm = no; then
|
|
|
|
AC_MSG_ERROR([binutils version is too old, use 2.41 or newer version])
|
2023-07-06 08:30:52 +00:00
|
|
|
fi
|