diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2003-07-14 20:09:20 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2003-07-14 20:09:20 +0000 |
commit | 6627b7f96a3c0d429d2f55b1407ba4aa77658bc8 (patch) | |
tree | 0acd4732728c994e61fd8d1f488931dfd3df841d /gcc/config.gcc | |
parent | 33971b58c3ebd3992b047d56390be737f75137fb (diff) | |
download | gcc-6627b7f96a3c0d429d2f55b1407ba4aa77658bc8.zip gcc-6627b7f96a3c0d429d2f55b1407ba4aa77658bc8.tar.gz gcc-6627b7f96a3c0d429d2f55b1407ba4aa77658bc8.tar.bz2 |
config.gcc (mips-sgi-irix6*o32, [...]): Add mips/sdb.h to the list of include files when using gas.
* config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): Add mips/sdb.h
to the list of include files when using gas.
(mips*el-*-openbsd*, mips*-*-openbsd*): Add mips/sdb.h unconditionally.
* config/mips/elf.h: Remove #undef SDB_DEBUGGING_INFO.
* config/mips/elf64.h: Likewise.
* config/mips/iris5.h: Likewise.
* config/mips/linux.h: Likewise.
* config/mips/iris5gas.h (SDB_DEBUGGING_INFO): Remove definition.
* config/mips/mips.h (PREFERRED_DEBUGGING_TYPE): Likewise.
(SDB_DEBUGGING_INFO, sdb*, SDB_ALLOW_*, PUT_SDB*): Move to...
* config/mips/sdb.h: ...this new file.
From-SVN: r69345
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index fc761ce..427298e 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1397,7 +1397,7 @@ mips-sgi-irix6*o32) # SGI System V.4., IRIX 6, O32 ABI tm_file="${tm_file} mips/iris5.h" if test x$gas = xyes then - tm_file="${tm_file} mips/iris5gas.h mips/iris6-o32-gas.h" + tm_file="${tm_file} mips/sdb.h mips/iris5gas.h mips/iris6-o32-gas.h" if test x$stabs = xyes then tm_file="${tm_file} dbx.h mips/dbxmdebug.h" @@ -1447,7 +1447,7 @@ mips-sgi-irix5*) # SGI System V.4., IRIX 5 tm_file="${tm_file} mips/iris5.h" if test x$gas = xyes then - tm_file="${tm_file} mips/iris5gas.h" + tm_file="${tm_file} mips/sdb.h mips/iris5gas.h" if test x$stabs = xyes then tm_file="${tm_file} dbx.h mips/dbxmdebug.h" @@ -1501,10 +1501,11 @@ mips*-*-linux*) # Linux MIPS, either endian. ;; mips*el-*-openbsd*) # mips little endian target_cpu_default="MASK_GAS|MASK_ABICALLS" + tm_file="${tm_file} mips/sdb.h" ;; mips*-*-openbsd*) # mips big endian target_cpu_default="MASK_GAS|MASK_ABICALLS" - tm_file="mips/openbsd-be.h ${tm_file}" + tm_file="mips/openbsd-be.h ${tm_file} mips/sdb.h" ;; mipsisa32-*-elf* | mipsisa32el-*-elf*) tm_file="${tm_file} mips/elf.h" |