diff options
author | marius <marius@FreeBSD.org> | 2011-03-11 21:24:02 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2011-03-11 21:24:02 +0000 |
commit | dd7c472938dc931d72a5cc8a83df77c70f38c102 (patch) | |
tree | 449de25d9399dc123f2183b2e204b768f1b6a305 /gnu | |
parent | 4573cb452015e22ff8ee6b21bd21e0eb2d3bdd11 (diff) | |
download | FreeBSD-src-dd7c472938dc931d72a5cc8a83df77c70f38c102.zip FreeBSD-src-dd7c472938dc931d72a5cc8a83df77c70f38c102.tar.gz |
Now that TLS is supported for sparc64 by both binutils 2.17.50 committed
in r218822 and rtld(1) committed in r219533 turn on TLS support in GCC.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libgomp/config.h | 2 | ||||
-rw-r--r-- | gnu/lib/libstdc++/config.h | 2 | ||||
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/auto-host.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gnu/lib/libgomp/config.h b/gnu/lib/libgomp/config.h index 8aecae8..c56d860 100644 --- a/gnu/lib/libgomp/config.h +++ b/gnu/lib/libgomp/config.h @@ -59,7 +59,7 @@ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if the target supports thread-local storage. */ -#if !defined(__sparc64__) && !defined(__arm__) && !defined(__mips__) +#if !defined(__arm__) && !defined(__mips__) #define HAVE_TLS 1 #endif diff --git a/gnu/lib/libstdc++/config.h b/gnu/lib/libstdc++/config.h index 8bc099f..4109752 100644 --- a/gnu/lib/libstdc++/config.h +++ b/gnu/lib/libstdc++/config.h @@ -371,7 +371,7 @@ /* #undef HAVE_TANL */ /* Define to 1 if the target supports thread-local storage. */ -#if !defined(__sparc64__) && !defined(__arm__) && !defined(__mips__) +#if !defined(__arm__) && !defined(__mips__) #define HAVE_TLS 1 #endif diff --git a/gnu/usr.bin/cc/cc_tools/auto-host.h b/gnu/usr.bin/cc/cc_tools/auto-host.h index 86795e1..a6ce739 100644 --- a/gnu/usr.bin/cc/cc_tools/auto-host.h +++ b/gnu/usr.bin/cc/cc_tools/auto-host.h @@ -287,7 +287,7 @@ /* Define if your assembler supports thread-local storage. */ #ifndef USED_FOR_TARGET -#if !defined(__sparc64__) && !defined(__arm__) +#if !defined(__arm__) #define HAVE_AS_TLS 1 #endif #endif |