Add support for Intel's XScale processor
This commit is contained in:
@ -145,6 +145,9 @@ case "${host_cpu}" in
|
||||
strongarm)
|
||||
machine_dir=arm
|
||||
;;
|
||||
xscale)
|
||||
machine_dir=xscale
|
||||
;;
|
||||
thumb)
|
||||
machine_dir=arm
|
||||
;;
|
||||
@ -263,6 +266,9 @@ case "${host}" in
|
||||
strongarm-*-*)
|
||||
sys_dir=arm
|
||||
;;
|
||||
xscale-*-*)
|
||||
sys_dir=arm
|
||||
;;
|
||||
thumb-*-*)
|
||||
sys_dir=arm
|
||||
;;
|
||||
@ -422,6 +428,11 @@ case "${host}" in
|
||||
newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"
|
||||
newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"
|
||||
;;
|
||||
xscale-*-*)
|
||||
syscall_dir=syscalls
|
||||
newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"
|
||||
newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"
|
||||
;;
|
||||
thumb-*-pe)
|
||||
syscall_dir=syscalls
|
||||
newlib_cflags="${newlib_cflags} -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY"
|
||||
|
Reference in New Issue
Block a user