Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-11-14 06:32:36 +0300
committerDaniel Jacobowitz <drow@false.org>2006-11-14 06:32:36 +0300
commitaef72dec449329a159b3ff94f4fcc12271de88fb (patch)
treea6e90494064d0bbbc72261f033a0df3409a61489 /config/tls.m4
parent7a0d0fba3fb7b1f9380d0fe70a1345f6833bcfbf (diff)
* tls.m4 (GCC_CHECK_TLS): Fall back to a link test.
Diffstat (limited to 'config/tls.m4')
-rw-r--r--config/tls.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/config/tls.m4 b/config/tls.m4
index b7a07309a..b66b6d758 100644
--- a/config/tls.m4
+++ b/config/tls.m4
@@ -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,