diff options
author | Nick Clifton <nickc@redhat.com> | 2000-11-30 01:57:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-11-30 01:57:27 +0000 |
commit | 0ffc3b94a0cc452f63eb977633e844dae8539f3a (patch) | |
tree | df045c028255a9399e7a5c489a946561619cac3b /newlib/configure.host | |
parent | 09872ef885e9307dc41eb41fdc08bdb1f8ffef7a (diff) | |
download | cygnal-0ffc3b94a0cc452f63eb977633e844dae8539f3a.tar.gz cygnal-0ffc3b94a0cc452f63eb977633e844dae8539f3a.tar.bz2 cygnal-0ffc3b94a0cc452f63eb977633e844dae8539f3a.zip |
Add support for Intel's XScale processor
Diffstat (limited to 'newlib/configure.host')
-rw-r--r-- | newlib/configure.host | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/newlib/configure.host b/newlib/configure.host index 99913d7c1..e86fcffe9 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -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" |