diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-12-02 16:00:28 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-12-06 09:40:19 -0300 |
commit | 2b0da5028dc85421dae2bbe67727b896569c814f (patch) | |
tree | 63d3402b14b0c1227a285a57ca0c4163eddbb3fe /sysdeps | |
parent | 6cfc50f40a5e59bc46d8b45bc7520f719e86af1e (diff) | |
download | glibc-2b0da5028dc85421dae2bbe67727b896569c814f.tar glibc-2b0da5028dc85421dae2bbe67727b896569c814f.tar.gz glibc-2b0da5028dc85421dae2bbe67727b896569c814f.tar.bz2 glibc-2b0da5028dc85421dae2bbe67727b896569c814f.zip |
configure: Remove AS check
The assembler is not issued directly, but rather always through CC
wrapper. The binutils version check if done with LD instead.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/x86/configure | 4 | ||||
-rw-r--r-- | sysdeps/x86/configure.ac | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/x86/configure b/sysdeps/x86/configure index a9c8c2ef67..f80fedd9dd 100644 --- a/sysdeps/x86/configure +++ b/sysdeps/x86/configure @@ -33,8 +33,8 @@ $as_echo "$libc_cv_x86_cet_available" >&6; } fi if test $enable_cet != no; then # Check if assembler supports CET. - { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $AS supports CET" >&5 -$as_echo_n "checking whether $AS supports CET... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether compiler supports CET" >&5 +$as_echo_n "checking whether compiler supports CET... " >&6; } if ${libc_cv_x86_cet_as+:} false; then : $as_echo_n "(cached) " >&6 else diff --git a/sysdeps/x86/configure.ac b/sysdeps/x86/configure.ac index edd43a2551..ac55dc674a 100644 --- a/sysdeps/x86/configure.ac +++ b/sysdeps/x86/configure.ac @@ -22,7 +22,7 @@ EOF fi if test $enable_cet != no; then # Check if assembler supports CET. - AC_CACHE_CHECK(whether $AS supports CET, + AC_CACHE_CHECK(whether compiler supports CET, libc_cv_x86_cet_as, [dnl cat > conftest.s <<EOF incsspd %ecx |