mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
Added delta88 cases
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
srcname="GDB"
|
srcname="GDB"
|
||||||
srctrigger=main.c
|
srctrigger=main.c
|
||||||
|
echo ZAP
|
||||||
# per-host:
|
# per-host:
|
||||||
|
|
||||||
# map host info into gdb names.
|
# map host info into gdb names.
|
||||||
@ -112,7 +112,16 @@ a29k)
|
|||||||
gdb_host=ultra3
|
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}
|
gdb_host=${host_cpu}
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -123,6 +132,7 @@ arm | vax | m88k | merlin | none | np1 | pn | pyramid | tahoe)
|
|||||||
|
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
||||||
if [ ! -f xconfig/${gdb_host} ]; then
|
if [ ! -f xconfig/${gdb_host} ]; then
|
||||||
echo '***' "Gdb does not support host ${host}" 1>&2
|
echo '***' "Gdb does not support host ${host}" 1>&2
|
||||||
exit 1
|
exit 1
|
||||||
@ -181,9 +191,15 @@ m68030)
|
|||||||
esac
|
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} ;;
|
gdb_target=${target_cpu} ;;
|
||||||
|
|
||||||
|
m88k)
|
||||||
|
case "${target_vendor}" in
|
||||||
|
motorola) gdb_target=delta88 ;;
|
||||||
|
*) gdb_target=dgux ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
a29k)
|
a29k)
|
||||||
case "${target_os}" in
|
case "${target_os}" in
|
||||||
none|aout|coff) gdb_target=a29k ;;
|
none|aout|coff) gdb_target=a29k ;;
|
||||||
|
Reference in New Issue
Block a user