diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-02 16:27:26 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-02 16:27:26 +0000 |
commit | 399f3ef6bedbd0fd924986da99f63e812113dcc8 (patch) | |
tree | 5b51af2c9f39e3098b44477b58958f62d35d214f /gcc/configure | |
parent | e818e49e599bd4b1a8f6189df4e127264390bb74 (diff) | |
download | gcc-399f3ef6bedbd0fd924986da99f63e812113dcc8.tar.gz |
* configure.ac (*-*-irix6*): Disable set_have_as_tls.
(*-*-osf*): Likewise.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166200 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/configure')
-rwxr-xr-x | gcc/configure | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/configure b/gcc/configure index da157e09f74..013ddec08ca 100755 --- a/gcc/configure +++ b/gcc/configure @@ -22443,6 +22443,16 @@ if test $gcc_cv_as_tls = yes; then fi fi case "$target" in + *-*-irix6*) + # IRIX 6.5 rld and libc.so lack TLS support, so even if gas and gld + # with TLS support are in use, native TLS cannot work. + set_have_as_tls=no + ;; + *-*-osf*) + # Tru64 UNIX loader and libc.so lack TLS support, so even if gas and + # gld with TLS support are in use, native TLS cannot work. + set_have_as_tls=no + ;; # TLS was introduced in the Solaris 9 FCS release and backported to # Solaris 8 patches. Support for GNU-style TLS on x86 was only # introduced in Solaris 9 4/04, replacing the earlier Sun style that Sun |