diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-04 18:15:35 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-04 18:15:35 +0000 |
commit | 9e5dd5ea3ddcf3032b749b62b01e43007be509e8 (patch) | |
tree | 2976d8bee7d1172f070e1afc3740f4d7fe555076 | |
parent | 7713fb6f1bb9f3043150076edec0b13664f05ae1 (diff) | |
download | cygnal-9e5dd5ea3ddcf3032b749b62b01e43007be509e8.tar.gz cygnal-9e5dd5ea3ddcf3032b749b62b01e43007be509e8.tar.bz2 cygnal-9e5dd5ea3ddcf3032b749b62b01e43007be509e8.zip |
2000-12-04 Joel Sherrill <joel@OARcorp.com>
* configure.host (or16, or32): New entries for OpenCores
OpenRisc CPUs.
(*-*-rtems*): Add -DNO_EXEC.
-rw-r--r-- | newlib/ChangeLog | 6 | ||||
-rw-r--r-- | newlib/configure.host | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 0cff0c90a..8f5d71c4b 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,9 @@ +2000-12-04 Joel Sherrill <joel@OARcorp.com> + + * configure.host (or16, or32): New entries for OpenCores + OpenRisc CPUs. + (*-*-rtems*): Add -DNO_EXEC. + 2000-12-04 Keith Outwater <vac4050@cae597.rsc.raytheon.com> * libc/include/sys/errno.h: Added comments on many error numbers. diff --git a/newlib/configure.host b/newlib/configure.host index e86fcffe9..7af14424b 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -131,6 +131,10 @@ case "${host_cpu}" in mn10300) machine_dir=mn10300 ;; + or16) + ;; + or32) + ;; powerpc*) machine_dir=powerpc ;; @@ -315,7 +319,7 @@ case "${host}" in # # NOTE: When newlib malloc uses a semaphore, RTEMS will switch to that. *-*-rtems*) - newlib_cflags="${newlib_cflags} -DHAVE_GETTIMEOFDAY -DMALLOC_PROVIDED -DEXIT_PROVIDED -DMISSING_SYSCALL_NAMES -DSIGNAL_PROVIDED -DREENTRANT_SYSCALLS_PROVIDED -DHAVE_OPENDIR" + newlib_cflags="${newlib_cflags} -DHAVE_GETTIMEOFDAY -DMALLOC_PROVIDED -DEXIT_PROVIDED -DMISSING_SYSCALL_NAMES -DSIGNAL_PROVIDED -DREENTRANT_SYSCALLS_PROVIDED -DHAVE_OPENDIR -DNO_EXEC" ;; # VxWorks supplies its own version of malloc, and the newlib one # doesn't work because VxWorks does not have sbrk. |