* gdb.stabs/configure.in: If configured -with-gnu-as for mips-*-*
authorPeter Schauer <Peter.Schauer@mytum.de>
Tue, 20 Jul 1993 07:04:26 +0000 (07:04 +0000)
committerPeter Schauer <Peter.Schauer@mytum.de>
Tue, 20 Jul 1993 07:04:26 +0000 (07:04 +0000)
targets use aout.mt instead of ecoff.mt as gas understands
standard aout format.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.stabs/configure.in

index 429e33d8026f028360c23c2474eb4186a6827b1b..56a720f2c9e771e95a1d8ef935840f760bb74c1c 100644 (file)
@@ -1,3 +1,9 @@
+Mon Jul 19 23:59:26 1993  Peter Schauer  (pes@regent.e-technik.tu-muenchen.de)
+
+       * gdb.stabs/configure.in: If configured -with-gnu-as for mips-*-*
+       targets use aout.mt instead of ecoff.mt as gas understands
+       standard aout format.
+
 Mon Jul 19 18:14:06 1993  Jim Kingdon  (kingdon@deneb.cygnus.com)
 
        * lib/gdb.exp (runto): Don't insist that function we are running to
index 815afa4c7a4fa4819812ce79d8929b9805cefeb8..1571bac3f7e1a9cb0c5adedb0d403a8b610b0fe5 100644 (file)
@@ -16,7 +16,12 @@ case "${target}" in
 rs6000-*-aix*)         target_makefile_frag=xcoff.mt ;;
 
 mips-*-bsd*)           target_makefile_frag=aout.mt ;;
-mips-*-*)              target_makefile_frag=ecoff.mt ;;
+mips-*-*)              if [ x${with_gnu_as} = xyes ]; then
+                         target_makefile_frag=aout.mt
+                       else
+                         target_makefile_frag=ecoff.mt
+                       fi
+                       ;;
 
 *-*-*)                 target_makefile_frag=aout.mt ;;