* 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.
This commit is contained in:
Peter Schauer 1993-07-20 07:04:26 +00:00
parent f7da728966
commit 9d77e877fe
2 changed files with 12 additions and 1 deletions

View 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

View 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 ;;