* configure.host: Accept "arm*" host spec instead of just "arm".
This commit is contained in:
parent
e0af71f092
commit
b680a27c6d
|
@ -1,3 +1,7 @@
|
|||
2012-02-23 Dan Egnor <egnor@ofb.net>
|
||||
|
||||
* configure.host: Accept "arm*" host spec instead of just "arm".
|
||||
|
||||
2012-02-21 Jeremy Bennett <jeremy.bennett@embecosm.com>
|
||||
Alan Lehotsky <apl@alum.mit.edu>
|
||||
Joern Rennecke <joern.rennecke@embecosm.com>
|
||||
|
|
|
@ -98,7 +98,7 @@ case "${host_cpu}" in
|
|||
arc)
|
||||
machine_dir=
|
||||
;;
|
||||
arm)
|
||||
arm*)
|
||||
machine_dir=arm
|
||||
;;
|
||||
avr*)
|
||||
|
@ -367,7 +367,7 @@ case "${host}" in
|
|||
arc-*-*)
|
||||
sys_dir=arc
|
||||
;;
|
||||
arm-*-*)
|
||||
arm*-*-*)
|
||||
sys_dir=arm
|
||||
if [ "x${newlib_may_supply_syscalls}" = "xno" ] ; then
|
||||
have_crt0="no"
|
||||
|
@ -560,10 +560,10 @@ case "${host}" in
|
|||
arc-*-*)
|
||||
syscall_dir=syscalls
|
||||
;;
|
||||
arm-*-pe)
|
||||
arm*-*-pe)
|
||||
syscall_dir=syscalls
|
||||
;;
|
||||
arm-*-*)
|
||||
arm*-*-*)
|
||||
syscall_dir=syscalls
|
||||
# If newlib is supplying syscalls, select which debug protocol is being used.
|
||||
# ARM_RDP_MONITOR selects the Demon monitor.
|
||||
|
|
Loading…
Reference in New Issue