diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2006-06-16 17:53:03 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2006-06-16 17:53:03 +0000 |
commit | 04879af33dfc9bee6ef86b01f83e8554f23690a0 (patch) | |
tree | 97e0e51e68a6759b330c6248ff9638cd6c89a9fe | |
parent | ef31fe62574cdc2b6e210c655377b7c161de225c (diff) | |
download | gcc-04879af33dfc9bee6ef86b01f83e8554f23690a0.zip gcc-04879af33dfc9bee6ef86b01f83e8554f23690a0.tar.gz gcc-04879af33dfc9bee6ef86b01f83e8554f23690a0.tar.bz2 |
re PR target/27540 (libgomp fails to configure on IRIX 5.3)
PR target/27540
* configure.in: Only enable libgomp on IRIX 6.
* configure: Regenerate.
From-SVN: r114726
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2006-06-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + PR target/27540 + * configure.in: Only enable libgomp on IRIX 6. + * configure: Regenerate. + 2006-06-15 Paolo Bonzini <bonzini@gnu.org> * Makefile.tpl (POSTSTAGE1_HOST_EXPORTS): Export CFLAGS and LDFLAGS @@ -1157,7 +1157,7 @@ if test x$enable_libgomp = x ; then ;; *-*-netbsd* | *-*-freebsd* | *-*-openbsd*) ;; - *-*-solaris2* | *-*-sysv4* | *-*-irix* | *-*-osf* | *-*-hpux11*) + *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11*) ;; *-*-darwin* | *-*-aix*) ;; diff --git a/configure.in b/configure.in index 2ff8aa5..6775f3c 100644 --- a/configure.in +++ b/configure.in @@ -353,7 +353,7 @@ if test x$enable_libgomp = x ; then ;; *-*-netbsd* | *-*-freebsd* | *-*-openbsd*) ;; - *-*-solaris2* | *-*-sysv4* | *-*-irix* | *-*-osf* | *-*-hpux11*) + *-*-solaris2* | *-*-sysv4* | *-*-irix6* | *-*-osf* | *-*-hpux11*) ;; *-*-darwin* | *-*-aix*) ;; |