diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2012-03-08 13:50:20 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2012-03-08 13:50:20 +0000 |
commit | 2527ff87ed8d4ce555a810c5b49556c9c6f6b03a (patch) | |
tree | c472a00dfabaed9cdd6490f769c8db98b467d79b /gcc | |
parent | d93417c86a355886015684eb5c43a45b09423d7a (diff) | |
download | gcc-2527ff87ed8d4ce555a810c5b49556c9c6f6b03a.zip gcc-2527ff87ed8d4ce555a810c5b49556c9c6f6b03a.tar.gz gcc-2527ff87ed8d4ce555a810c5b49556c9c6f6b03a.tar.bz2 |
Fix R_386_TLS_LDM_PLT detection
* configure.ac (gcc_cv_as_ix86_tlsldmplt): Add label.
* configure: Regenerate.
From-SVN: r185101
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.ac | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7594d2d..3161c39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-03-08 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * configure.ac (gcc_cv_as_ix86_tlsldmplt): Add label. + * configure: Regenerate. + 2012-03-08 Georg-Johann Lay <avr@gjlay.de> PR target/52496 diff --git a/gcc/configure b/gcc/configure index 94b33ce..e2a0aea 100755 --- a/gcc/configure +++ b/gcc/configure @@ -24911,7 +24911,8 @@ if test "${gcc_cv_as_ix86_tlsldmplt+set}" = set; then : else gcc_cv_as_ix86_tlsldmplt=no if test x$gcc_cv_as != x; then - $as_echo 'call tls_ld@tlsldmplt' > conftest.s + $as_echo 'tls_ld: + call tls_ld@tlsldmplt' > conftest.s if { ac_try='$gcc_cv_as $gcc_cv_as_flags -o conftest.o conftest.s >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_try\""; } >&5 (eval $ac_try) 2>&5 diff --git a/gcc/configure.ac b/gcc/configure.ac index 57210f4..39302ad 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -3724,7 +3724,8 @@ foo: nop gcc_GAS_CHECK_FEATURE([R_386_TLS_LDM_PLT reloc], gcc_cv_as_ix86_tlsldmplt,,, - [call tls_ld@tlsldmplt], + [tls_ld: + call tls_ld@tlsldmplt], [if test x$gcc_cv_ld != x \ && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then gcc_cv_as_ix86_tlsldmplt=yes |