]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
powerpc32: Remove unused HAVE_PPC_SECURE_PLT
authorFangrui Song <maskray@google.com>
Mon, 2 May 2022 15:55:36 +0000 (08:55 -0700)
committerFangrui Song <maskray@google.com>
Mon, 2 May 2022 15:55:36 +0000 (08:55 -0700)
82a79e7d1843f9d90075a0bf2f04557040829bb0 removed the only user of
HAVE_PPC_SECURE_PLT.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
config.h.in
sysdeps/powerpc/powerpc32/configure
sysdeps/powerpc/powerpc32/configure.ac

index 916465fce81f1eb60f3f6352169892791de5b7f8..dd650ddd09d20722b418eb9111b3460abe05ab86 100644 (file)
 /* Define if inlined system calls are available.  */
 #undef HAVE_INLINED_SYSCALLS
 
-/* Define if your compiler defaults to -msecure-plt mode on ppc.  */
-#undef HAVE_PPC_SECURE_PLT
-
 /* Define if memory tagging support should be enabled.  */
 #undef USE_MTAG
 
index 551505327a0b8aaa2ca038f5319baa9e6fb5ef6d..eb1bcbe651934adf4ac6f5428db3f58cd987cbe9 100644 (file)
@@ -3,30 +3,3 @@
 
 $as_echo "#define HIDDEN_VAR_NEEDS_DYNAMIC_RELOC 1" >>confdefs.h
 
-
-# See whether GCC uses -msecure-plt.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -msecure-plt by default" >&5
-$as_echo_n "checking for -msecure-plt by default... " >&6; }
-if ${libc_cv_ppc_secure_plt+:} false; then :
-  $as_echo_n "(cached) " >&6
-else
-  echo 'int foo (void) { extern int bar; return bar; }' > conftest.c
-libc_cv_ppc_secure_plt=no
-if { ac_try='${CC-cc} -S $CFLAGS conftest.c -fpic -o conftest.s 1>&5'
-  { { 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
-  if grep '_GLOBAL_OFFSET_TABLE_-.*@ha' conftest.s > /dev/null 2>&1; then
-    libc_cv_ppc_secure_plt=yes
-  fi
-fi
-rm -rf conftest*
-fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_ppc_secure_plt" >&5
-$as_echo "$libc_cv_ppc_secure_plt" >&6; }
-if test $libc_cv_ppc_secure_plt = yes; then
-  $as_echo "#define HAVE_PPC_SECURE_PLT 1" >>confdefs.h
-
-fi
index 2f0ea63e0d417449d47438edc37c84e57a725f34..158f464b950156f0a1c06d69b9d96fb291de157b 100644 (file)
@@ -2,17 +2,3 @@ GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
 # Local configure fragment for sysdeps/powerpc/powerpc32.
 
 AC_DEFINE(HIDDEN_VAR_NEEDS_DYNAMIC_RELOC)
-
-# See whether GCC uses -msecure-plt.
-AC_CACHE_CHECK(for -msecure-plt by default, libc_cv_ppc_secure_plt, [dnl
-echo 'int foo (void) { extern int bar; return bar; }' > conftest.c
-libc_cv_ppc_secure_plt=no
-if AC_TRY_COMMAND(${CC-cc} -S $CFLAGS conftest.c -fpic -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
-  if grep '_GLOBAL_OFFSET_TABLE_-.*@ha' conftest.s > /dev/null 2>&1; then
-    libc_cv_ppc_secure_plt=yes
-  fi
-fi
-rm -rf conftest*])
-if test $libc_cv_ppc_secure_plt = yes; then
-  AC_DEFINE(HAVE_PPC_SECURE_PLT)
-fi