aboutsummaryrefslogtreecommitdiff
path: root/gcc/configure.ac
diff options
context:
space:
mode:
authorRoger Sayle <roger@eyesopen.com>2008-02-01 17:41:48 +0000
committerRoger Sayle <sayle@gcc.gnu.org>2008-02-01 17:41:48 +0000
commitd5be1dd4e62d46eeb63b9a37928205f1818b5f01 (patch)
tree9eb1968518d60d18d5a696a86fe1b8169a76688c /gcc/configure.ac
parent400d7a822cb3bcccda5df112d45faeb17efc237b (diff)
downloadgcc-d5be1dd4e62d46eeb63b9a37928205f1818b5f01.zip
gcc-d5be1dd4e62d46eeb63b9a37928205f1818b5f01.tar.gz
gcc-d5be1dd4e62d46eeb63b9a37928205f1818b5f01.tar.bz2
re PR bootstrap/33781 ("Arg list too long" building libgcc.a)
PR bootstrap/33781 * configure.ac (--enable-fixed-point): Disable unless explicitly requested on IRIX. * configure: Regenerate. From-SVN: r132047
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r--gcc/configure.ac14
1 files changed, 11 insertions, 3 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac
index 18406c7..f3bc7b3 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)