* configure.in: Add hosts rtpc-*-* and a29k-*-*.
Merge target arm case with other "easy" cases. Add target cases a29k-*-none (rehack of am29k), a29k-*-kern (remote to Ultracomputer kernel), and a29k-*-sym1 (ultracomputer OS's user process).
This commit is contained in:
parent
780bdcb936
commit
473f33181c
1 changed files with 20 additions and 4 deletions
|
@ -91,7 +91,17 @@ ns32k)
|
|||
esac
|
||||
;;
|
||||
|
||||
arm | vax | m88k | merlin | none | np1 | pn | pyramid | tahoe) gdb_host=${host_cpu} ;;
|
||||
rtpc)
|
||||
gdb_host=rtbsd
|
||||
;;
|
||||
|
||||
a29k)
|
||||
gdb_host=ultra3
|
||||
;;
|
||||
|
||||
arm | vax | m88k | merlin | none | np1 | pn | pyramid | tahoe)
|
||||
gdb_host=${host_cpu}
|
||||
;;
|
||||
|
||||
### unhandled hosts
|
||||
#altosgas
|
||||
|
@ -152,10 +162,16 @@ m68030)
|
|||
esac
|
||||
;;
|
||||
|
||||
none | tahoe | vax | np1 | pn | np1 | pn | pyramid | merlin | m88k)
|
||||
none | arm | tahoe | vax | np1 | pn | np1 | pn | pyramid | merlin | m88k)
|
||||
gdb_target=${target_cpu} ;;
|
||||
a29k) gdb_target=am29k ;;
|
||||
arm) gdb_target=${target_cpu} ;;
|
||||
|
||||
a29k)
|
||||
case "${target_os}" in
|
||||
none) gdb_target=a29k ;;
|
||||
sym1) gdb_target=ultra3 ;;
|
||||
kern) gdb_target=a29k-kern ;;
|
||||
esac
|
||||
;;
|
||||
|
||||
mips)
|
||||
case "${target_vendor}" in
|
||||
|
|
Loading…
Reference in a new issue