Add support for Intel's XScale processor

This commit is contained in:
Nick Clifton
2000-11-30 01:57:27 +00:00
parent 09872ef885
commit 0ffc3b94a0
17 changed files with 3234 additions and 0 deletions

View File

@ -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"