* 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:
parent
f7da728966
commit
9d77e877fe
@ -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
|
||||
|
@ -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 ;;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user