diff options
author | Kevin Buettner <kevinb@redhat.com> | 2002-07-29 23:35:56 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2002-07-29 23:35:56 +0000 |
commit | 28f4966bbb877f73443df7b777075fbbc4ddfa0d (patch) | |
tree | fa76b1b18209fd6a31c1a47fdee43560155440ca /gdb/testsuite/lib | |
parent | 2265c243fc134596f73bd02b93c45ab7a5e9c49e (diff) | |
download | gdb-28f4966bbb877f73443df7b777075fbbc4ddfa0d.zip gdb-28f4966bbb877f73443df7b777075fbbc4ddfa0d.tar.gz gdb-28f4966bbb877f73443df7b777075fbbc4ddfa0d.tar.bz2 |
* lib/gdb.exp (mips*-*-irix*): Use alternate method for preprocessing
source files. The ``-o'' option doesn't work with the ``-E'' option
when using the Irix compiler.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 8d666f9..471d08e 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -959,7 +959,7 @@ proc get_compiler_info {binfile args} { global signed_keyword_not_used global gcc_compiled - if {![istarget "hppa*-*-hpux*"]} { + if {![istarget "hppa*-*-hpux*"] && ![istarget "mips*-*-irix*"]} { if { [llength $args] > 0 } { if {$args == "c++"} { if { [gdb_compile "${srcdir}/lib/compiler.cc" "${binfile}.ci" preprocess {}] != "" } { |