Added delta88 cases

This commit is contained in:
Steve Chamberlain 1991-11-08 02:20:29 +00:00
parent de94d3dadc
commit 8c7ae4a273
1 changed files with 19 additions and 3 deletions

View File

@ -1,6 +1,6 @@
srcname="GDB"
srctrigger=main.c
echo ZAP
# per-host:
# map host info into gdb names.
@ -112,7 +112,16 @@ a29k)
gdb_host=ultra3
;;
arm | vax | m88k | merlin | none | np1 | pn | pyramid | tahoe)
m88k)
case "${host_vendor}" in
motorola)
gdb_host=delta88 ;;
*)
gdb_host=m88k ;;
esac
;;
arm | vax | merlin | none | np1 | pn | pyramid | tahoe)
gdb_host=${host_cpu}
;;
@ -123,6 +132,7 @@ arm | vax | m88k | merlin | none | np1 | pn | pyramid | tahoe)
esac
if [ ! -f xconfig/${gdb_host} ]; then
echo '***' "Gdb does not support host ${host}" 1>&2
exit 1
@ -181,9 +191,15 @@ m68030)
esac
;;
none | arm | tahoe | vax | np1 | pn | np1 | pn | pyramid | merlin | m88k)
none | arm | tahoe | vax | np1 | pn | np1 | pn | pyramid | merlin)
gdb_target=${target_cpu} ;;
m88k)
case "${target_vendor}" in
motorola) gdb_target=delta88 ;;
*) gdb_target=dgux ;;
esac
;;
a29k)
case "${target_os}" in
none|aout|coff) gdb_target=a29k ;;