diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-01 17:41:48 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-01 17:41:48 +0000 |
commit | 6ccd4361ae59a60e199f38219b0f74d86a639fbe (patch) | |
tree | 9eb1968518d60d18d5a696a86fe1b8169a76688c | |
parent | 42dd0565eb759ba1191967b835db16393885953f (diff) | |
download | gcc-6ccd4361ae59a60e199f38219b0f74d86a639fbe.tar.gz |
PR bootstrap/33781
* configure.ac (--enable-fixed-point): Disable unless explicitly
requested on IRIX.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132047 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rwxr-xr-x | gcc/configure | 11 | ||||
-rw-r--r-- | gcc/configure.ac | 14 |
3 files changed, 28 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 021814aec84..35f0e75eed2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2008-02-01 Roger Sayle <roger@eyesopen.com> + + PR bootstrap/33781 + * configure.ac (--enable-fixed-point): Disable unless explicitly + requested on IRIX. + * configure: Regenerate. + 2008-02-01 Richard Guenther <rguenther@suse.de> PR other/35042 diff --git a/gcc/configure b/gcc/configure index 5581fd628d2..ed7bba16e0e 100755 --- a/gcc/configure +++ b/gcc/configure @@ -7056,7 +7056,16 @@ else case $target in mips*-*-*) - enable_fixed_point=yes + case $host in + mips*-sgi-irix*) + { echo "$as_me:$LINENO: WARNING: fixed-point support is not available for IRIX" >&5 +echo "$as_me: WARNING: fixed-point support is not available for IRIX" >&2;} + enable_fixed_point=no + ;; + *) + enable_fixed_point=yes + ;; + esac ;; *) { echo "$as_me:$LINENO: WARNING: fixed-point is not supported for this target" >&5 diff --git a/gcc/configure.ac b/gcc/configure.ac index 18406c7221f..f3bc7b352c5 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1,8 +1,8 @@ # configure.ac for GCC # Process this file with autoconf to generate a configuration script. -# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 -# Free Software Foundation, Inc. +# Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, +# 2007, 2008 Free Software Foundation, Inc. #This file is part of GCC. @@ -649,7 +649,15 @@ AC_ARG_ENABLE(fixed-point, [ case $target in mips*-*-*) - enable_fixed_point=yes + case $host in + mips*-sgi-irix*) + AC_MSG_WARN(fixed-point is not supported on IRIX, ignored) + enable_fixed_point=no + ;; + *) + enable_fixed_point=yes + ;; + esac ;; *) AC_MSG_WARN(fixed-point is not supported for this target, ignored) |