diff options
author | Dave Brolley <brolley@redhat.com> | 2002-06-18 21:20:28 +0000 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2002-06-18 21:20:28 +0000 |
commit | 4ecedd09e73d48605b31ce03d5fe26becfe55010 (patch) | |
tree | c06398e1f8b95c6f03b87dce84c934eff41245ca /newlib/configure.host | |
parent | c2b0dec2dcf3f57f3c306ad84b8e8a83bb913d35 (diff) | |
download | cygnal-4ecedd09e73d48605b31ce03d5fe26becfe55010.tar.gz cygnal-4ecedd09e73d48605b31ce03d5fe26becfe55010.tar.bz2 cygnal-4ecedd09e73d48605b31ce03d5fe26becfe55010.zip |
2002-06-18 Dave Brolley <brolley@redhat.com>
From Catherine Moore, Michael Meissner, Richard Sandiford:
* libc/include/machine/setjmp.h (_JBLEN): Define for __frv__.
(_JBTYPE): Ditto.
* libc/include/sys/config.h (__IEEE_BIG_ENDIAN): Ditto.
(__ATTRIBUTE_IMPURE_PTR__): Ditto.
* libc/include/machine/ieeefp.h (__IEEE_BIG_ENDIAN): Ditto.
* configure.host: Support frv-*-*.
* libc/machine/frv/Makefile.am: New file.
* libc/machine/frv/configure.in: New file.
* libc/machine/frv/setjmp.S: New file.
Diffstat (limited to 'newlib/configure.host')
-rw-r--r-- | newlib/configure.host | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/configure.host b/newlib/configure.host index 69f793328..c5e3e2465 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -193,6 +193,9 @@ case "${host_cpu}" in machine_dir=v850 newlib_cflags="${newlib_cflags} -DPREFER_SIZE_OVER_SPEED -mv850 " ;; + frv) + machine_dir=frv + ;; w65*) machine_dir=w65 ;; @@ -372,6 +375,9 @@ case "${host}" in v850ea-*-*) sys_dir=sysnecv850 ;; + frv*) + sys_dir= + ;; w65-*-*) sys_dir=w65 ;; @@ -559,6 +565,10 @@ case "${host}" in v850ea-*-*) syscall_dir=syscalls ;; + frv-*-*) + syscall_dir=syscalls + newlib_cflags="${newlib_cflags} -DWANT_PRINTF_LONG_LONG" + ;; w65-*-*) syscall_dir=syscalls newlib_cflags="${newlib_cflags} -DSMALL_DTOA -DSMALL_MEMORY" |