diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-06-27 19:51:33 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-06-27 19:51:33 +0000 |
commit | 4634da64f74f2c3d589e432ad40de2d9167b738c (patch) | |
tree | 81a559efb71aaa36a2f6a5caedf16e1b8466d22f /newlib/configure.host | |
parent | 666b9d7bb8d9ca3f704de67f43300d15b0fe7398 (diff) | |
download | cygnal-4634da64f74f2c3d589e432ad40de2d9167b738c.tar.gz cygnal-4634da64f74f2c3d589e432ad40de2d9167b738c.tar.bz2 cygnal-4634da64f74f2c3d589e432ad40de2d9167b738c.zip |
Tue Jun 27 15:49:00 2000 Marek Michalkiewicz <marekm@linux.org.pl>
* configure.host: Add support for AVR target.
* libc/include/machine/ieeefp.h: Likewise.
* libc/include/sys/config.h: Likewise.
Diffstat (limited to 'newlib/configure.host')
-rw-r--r-- | newlib/configure.host | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/newlib/configure.host b/newlib/configure.host index bfb252b83..99913d7c1 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -45,7 +45,7 @@ case "${target_optspace}:${host}" in yes:*) newlib_cflags="${newlib_cflags} -Os" ;; - :m32r-* | :d10v-* | :d30v-*) + :m32r-* | :d10v-* | :d30v-* | :avr-*) newlib_cflags="${newlib_cflags} -Os" ;; no:* | :*) @@ -68,6 +68,9 @@ case "${host_cpu}" in arm) machine_dir=arm ;; + avr*) + newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -mcall-prologues" + ;; d10v*) machine_dir=d10v ;; @@ -338,6 +341,9 @@ case "${host}" in # newlib_cflags="${newlib_cflags} -DARM_RDP_MONITOR" newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR" ;; + avr*) + newlib_cflags="${newlib_cflags} -DNO_EXEC -DSMALL_MEMORY -DMISSING_SYSCALL_NAMES" + ;; d10v*) newlib_cflags="${newlib_cflags} -DSMALL_MEMORY" syscall_dir=syscalls |