mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
098a657fe4
PI_STATIC_AND_HIDDEN indicates whether accesses to internal linkage variables and hidden visibility variables in a shared object (ld.so) need dynamic relocations (usually R_*_RELATIVE). PI (position independent) in the macro name is a misnomer: a code sequence using GOT is typically position-independent as well, but using dynamic relocations does not meet the requirement. Not defining PI_STATIC_AND_HIDDEN is legacy and we expect that all new ports will define PI_STATIC_AND_HIDDEN. Current ports defining PI_STATIC_AND_HIDDEN are more than the opposite. Change the configure default. No functional change. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
# This file is generated from configure.ac by Autoconf. DO NOT EDIT!
|
|
# Local configure fragment for sysdeps/riscv/elf.
|
|
|
|
# Check if static linker supports R_RISCV_ALIGN
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for R_RISCV_ALIGN linker relaxation support" >&5
|
|
$as_echo_n "checking for R_RISCV_ALIGN linker relaxation support... " >&6; }
|
|
if ${libc_cv_riscv_r_align+:} false; then :
|
|
$as_echo_n "(cached) " >&6
|
|
else
|
|
cat > conftest.S <<EOF
|
|
.align 3
|
|
foo:
|
|
li a0,42
|
|
ret
|
|
EOF
|
|
libc_cv_riscv_r_align=no
|
|
if { ac_try='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -nostdlib -nostartfiles $no_ssp -shared -fPIC -o contests.o conftest.S'
|
|
{ { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5
|
|
(eval $ac_try) 2>&5
|
|
ac_status=$?
|
|
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
|
test $ac_status = 0; }; }
|
|
then
|
|
libc_cv_riscv_r_align=yes
|
|
fi
|
|
rm -rf conftest.*
|
|
fi
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_riscv_r_align" >&5
|
|
$as_echo "$libc_cv_riscv_r_align" >&6; }
|
|
config_vars="$config_vars
|
|
riscv-r-align = $libc_cv_riscv_r_align"
|