diff options
author | Tom Tromey <tromey@redhat.com> | 2005-09-23 17:28:31 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2005-09-23 17:28:31 +0000 |
commit | 11c94d12ff151555656d15f6ddbacedf9939d0d0 (patch) | |
tree | c841a84be7f715c538bfb01e4cf5cc5d9d12c1e0 /config/tls.m4 | |
parent | d785c760909278f14459ba4da0e3ea29821c16e9 (diff) | |
download | gdb-11c94d12ff151555656d15f6ddbacedf9939d0d0.zip gdb-11c94d12ff151555656d15f6ddbacedf9939d0d0.tar.gz gdb-11c94d12ff151555656d15f6ddbacedf9939d0d0.tar.bz2 |
* enable.m4: New file.
* tls.m4: New file.
Diffstat (limited to 'config/tls.m4')
-rw-r--r-- | config/tls.m4 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config/tls.m4 b/config/tls.m4 new file mode 100644 index 0000000..5cbb685 --- /dev/null +++ b/config/tls.m4 @@ -0,0 +1,21 @@ +dnl Check whether the target supports TLS. +AC_DEFUN([GCC_CHECK_TLS], [ + GCC_ENABLE(tls, yes, [Use thread-local storage]) + AC_CACHE_CHECK([whether the target supports thread-local storage], + have_tls, [ + AC_RUN_IFELSE([__thread int a; int b; int main() { return a = b; }], + [dnl If the test case passed with dynamic linking, try again with + dnl static linking. This fails at least with some older Red Hat + dnl releases. + save_LDFLAGS="$LDFLAGS" + LDFLAGS="-static $LDFLAGS" + AC_RUN_IFELSE([__thread int a; int b; int main() { return a = b; }], + [have_tls=yes], [have_tls=no], []) + LDFLAGS="$save_LDFLAGS"], + [have_tls=no], + [AC_COMPILE_IFELSE([__thread int foo;], [have_tls=yes], [have_tls=no])] + )]) + if test "$enable_tls $have_tls" = "yes yes"; then + AC_DEFINE(HAVE_TLS, 1, + [Define to 1 if the target supports thread-local storage.]) + fi]) |