diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2004-02-05 23:12:17 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2004-02-05 23:12:17 +0000 |
commit | 89a95129ff73b679135c11a973193e9f72324058 (patch) | |
tree | bbe01280181721d243a46a97f63e2bef42a62a9e /configure.in | |
parent | 9733d507ec592e1eeb35879bd151684e2a487893 (diff) | |
download | gcc-89a95129ff73b679135c11a973193e9f72324058.tar.gz |
configure.in: Don't pass --with-stabs on IRIX 5 either.
* configure.in: Don't pass --with-stabs on IRIX 5 either.
* configure: Regenerate.
gcc:
* config/mips/iris5gas.h (PREFERRED_DEBUGGING_TYPE): Define.
From-SVN: r77349
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b286f1aa7ef..eb374a45b38 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, -# 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. # # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -1250,7 +1250,7 @@ fi # Default to using --with-stabs for certain targets. if test x${with_stabs} = x ; then case "${target}" in - mips*-*-irix6*) + mips*-*-irix[[56]]*) ;; mips*-*-* | alpha*-*-osf*) with_stabs=yes; |