diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-11-02 16:51:39 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-11-03 09:25:06 -0300 |
commit | 09f214528c21f2825790d11ed9d1ac18d0657d48 (patch) | |
tree | 7eb558310ca0dd265e3728e6f9e623e65e436662 /sysdeps/riscv/configure | |
parent | 6720d36b6623c5e48c070d86acf61198b33e144e (diff) | |
download | glibc-09f214528c21f2825790d11ed9d1ac18d0657d48.tar glibc-09f214528c21f2825790d11ed9d1ac18d0657d48.tar.gz glibc-09f214528c21f2825790d11ed9d1ac18d0657d48.tar.bz2 glibc-09f214528c21f2825790d11ed9d1ac18d0657d48.zip |
riscv: Build with -mno-relax if linker does not support R_RISCV_ALIGN
It allows build both glibc and tests with lld (Since lld does not
support R_RISCV_ALIGN linker relaxation).
Checked with a build for riscv32-linux-gnu-rv32imafdc-ilp32d and
riscv64-linux-gnu-rv64imafdc-lp64d.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Fangrui Song <maskray@google.com>
Diffstat (limited to 'sysdeps/riscv/configure')
-rw-r--r-- | sysdeps/riscv/configure | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sysdeps/riscv/configure b/sysdeps/riscv/configure index 53f5f1b5f1..4a56fca94b 100644 --- a/sysdeps/riscv/configure +++ b/sysdeps/riscv/configure @@ -2,3 +2,33 @@ # Local configure fragment for sysdeps/riscv/elf. $as_echo "#define PI_STATIC_AND_HIDDEN 1" >>confdefs.h + + +# 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" |