mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
9d77e877fe
targets use aout.mt instead of ecoff.mt as gas understands standard aout format.
29 lines
676 B
Plaintext
29 lines
676 B
Plaintext
# This file is a shell script fragment that supplies the information
|
|
# necessary to tailor a template configure script into the configure
|
|
# script appropriate for this directory. For more information, check
|
|
# any existing configure script.
|
|
|
|
srctrigger="wierd.exp"
|
|
srcname="gdb.stabs"
|
|
|
|
# per-host:
|
|
|
|
# per-target:
|
|
|
|
case "${target}" in
|
|
|
|
# Do any other machines use .stabx? What about i386-*-aix*?
|
|
rs6000-*-aix*) target_makefile_frag=xcoff.mt ;;
|
|
|
|
mips-*-bsd*) target_makefile_frag=aout.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 ;;
|
|
|
|
esac
|