diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2014-07-17 18:43:05 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2014-07-17 18:43:05 +0000 |
commit | 81fd6210c04e3ea7e28d679352f684c19fe26dfb (patch) | |
tree | fe5ed67ee7680042bd653d8168e3941395bb4632 /newlib/configure.host | |
parent | f162f4205d6c53e2185671f23649e9241ab2946d (diff) | |
download | cygnal-81fd6210c04e3ea7e28d679352f684c19fe26dfb.tar.gz cygnal-81fd6210c04e3ea7e28d679352f684c19fe26dfb.tar.bz2 cygnal-81fd6210c04e3ea7e28d679352f684c19fe26dfb.zip |
* configure.host: Remove or16 and or32 targets and add or1k.
* libc/include/machine/ieeefp.h: Replace or32 with or1k.
* libc/machine/configure.in: Add or1k subdirectory.
* libc/machine/or1k/configure.in: New file.
* libc/machine/or1k/Makefile.am: New file.
* libc/machine/or1k/setjmp.S: New file.
Diffstat (limited to 'newlib/configure.host')
-rw-r--r-- | newlib/configure.host | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/newlib/configure.host b/newlib/configure.host index a78a20271..39eb0fb2b 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -244,9 +244,8 @@ case "${host_cpu}" in nios2*) machine_dir=nios2 ;; - or16) - ;; - or32) + or1k*) + machine_dir=or1k ;; powerpc*) machine_dir=powerpc @@ -502,6 +501,9 @@ case "${host}" in nios2*) sys_dir= ;; + or1k-*-* | or1knd-*-*) + syscall_dir=syscalls + ;; powerpcle-*-pe) posix_dir=posix ;; |