diff options
author | gonzo <gonzo@FreeBSD.org> | 2008-05-03 21:24:28 +0000 |
---|---|---|
committer | gonzo <gonzo@FreeBSD.org> | 2008-05-03 21:24:28 +0000 |
commit | bee6ac39c33338d9c3cdc03f6b2cb7b9985627d1 (patch) | |
tree | ffc8fc412ee79d6624e42ba07cd35426866423b1 /gnu/lib/libstdc++/config.h | |
parent | 1f093a69bbf4bc2cc47196c8b703e9199c7fb86d (diff) | |
download | FreeBSD-src-bee6ac39c33338d9c3cdc03f6b2cb7b9985627d1.zip FreeBSD-src-bee6ac39c33338d9c3cdc03f6b2cb7b9985627d1.tar.gz |
Add MIPS to the list of "no TLS" architectures.
Approved by: cognet (mentor)
Diffstat (limited to 'gnu/lib/libstdc++/config.h')
-rw-r--r-- | gnu/lib/libstdc++/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libstdc++/config.h b/gnu/lib/libstdc++/config.h index 7ff63eb..de4641d 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__) +#if !defined(__sparc64__) && !defined(__arm__) && !defined(__mips__) #define HAVE_TLS 1 #endif |