diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-28 18:29:50 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-28 18:29:50 +0000 |
commit | c8306b9c0c49be84b69c83c83da442953240ef73 (patch) | |
tree | 16bd0f056625bcd2864f21c5591d24f60437d748 /gcc/config.gcc | |
parent | 48efb0bb390457104c643dc2d7bb8c6b766e3104 (diff) | |
download | gcc-c8306b9c0c49be84b69c83c83da442953240ef73.tar.gz |
2010-01-28 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 156327
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@156329 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 1c7cb37f918..3b61af42deb 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1,6 +1,6 @@ # GCC target-specific configuration file. # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -# 2008, 2009 Free Software Foundation, Inc. +# 2008, 2009, 2010 Free Software Foundation, Inc. #This file is part of GCC. @@ -1655,12 +1655,23 @@ mips-sgi-irix[56]*) case ${target} in *-*-irix5*) tm_file="${tm_file} mips/iris5.h" + use_gcc_stdint=provide ;; *-*-irix6*) tm_file="${tm_file} mips/iris6.h" tmake_file="${tmake_file} mips/t-iris6" tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32" + case ${target} in + *-*-irix6.[0-4]*) + use_gcc_stdint=provide + ;; + *-*-irix6.5*) + # Only IRIX Development Foundation 1.3 for IRIX 6.5 + # provides stdint.h. + use_gcc_stdint=wrap + ;; + esac ;; esac if test "x$stabs" = xyes |