* tls.m4 (GCC_CHECK_TLS): Fall back to a link test.
[deliverable/binutils-gdb.git] / config / tls.m4
index b7a07309abe447ec458dc7e014c44b3c4c5b9331..b66b6d758cecbf96dd259c7f4e923027ac1d7f70 100644 (file)
@@ -13,7 +13,8 @@ AC_DEFUN([GCC_CHECK_TLS], [
                    [have_tls=yes], [have_tls=no], [])
       LDFLAGS="$save_LDFLAGS"],
       [have_tls=no],
-      [AC_COMPILE_IFELSE([__thread int foo;], [have_tls=yes], [have_tls=no])]
+      [AC_LINK_IFELSE([__thread int a; int b; int main() { return a = b; }],
+       [have_tls=yes], [have_tls=no])]
     )])
   if test "$enable_tls $have_tls" = "yes yes"; then
     AC_DEFINE(HAVE_TLS, 1,
This page took 0.022558 seconds and 4 git commands to generate.