diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-08-10 20:35:13 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-08-10 20:35:13 +0000 |
commit | 56448afa06abf287d8bfbd45b1a040ab32d54bb9 (patch) | |
tree | 573b9d596cdd6584d768de46684c217dfa8f22c5 /newlib/configure.host | |
parent | 250996a91b6d027962e9b14f035258b1782f5494 (diff) | |
download | newlib-56448afa06abf287d8bfbd45b1a040ab32d54bb9.zip newlib-56448afa06abf287d8bfbd45b1a040ab32d54bb9.tar.gz newlib-56448afa06abf287d8bfbd45b1a040ab32d54bb9.tar.bz2 |
2005-08-10 DJ Delorie <dj@redhat.com>
* configure.host: Add m32c support.
* libc/include/machine/ieeefp.h: Likewise.
* libc/include/machine/setjmp.h: Likewise.
* libc/include/sys/config.h: Likewise.
* libc/machine/m32c: New directory, Renesas R8C/M16C/M32C support.
* libc/machine/m32c/aclocal.m4: New file.
* libc/machine/m32c/configure: Ditto.
* libc/machine/m32c/configure.in: Ditto.
* libc/machine/m32c/Makefile.am: Ditto.
* libc/machine/m32c/Makefile.in: Ditto.
* libc/machine/m32c/setjmp.S: Ditto.
Diffstat (limited to 'newlib/configure.host')
-rw-r--r-- | newlib/configure.host | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/newlib/configure.host b/newlib/configure.host index 6368272..095007a 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -67,7 +67,7 @@ case "${target_optspace}:${host}" in yes:*) newlib_cflags="${newlib_cflags} -Os" ;; - :m32r-* | :d10v-* | :d30v-* | :avr-*) + :m32r-* | :d10v-* | :d30v-* | :avr-* | :m32c-* ) newlib_cflags="${newlib_cflags} -Os" ;; no:* | :*) @@ -145,6 +145,11 @@ case "${host_cpu}" in iq2000) machine_dir=iq2000 ;; + m32c) + machine_dir=m32c + newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -DABORT_PROVIDED -DSMALL_MEMORY" + ;; + m32r*) machine_dir=m32r ;; |