Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2009-12-10 20:12:11 +0300
committerJeff Johnston <jjohnstn@redhat.com>2009-12-10 20:12:11 +0300
commit655e435357f985b125e4de8e63d268ae42de27e2 (patch)
tree3e0974db17c7f5c427a60026cc1afe7e4fdcdffc /newlib/configure.host
parente6291536c7060db2c95b556434b2d41aecf5fba5 (diff)
2009-12-10 Conny Marco Menebrocker <c-m-m@gmx.de>
* configure.host: Add xc16x support. * libc/include/machine/ieeefp.h: Ditto. * libc/include/sys/config.h: Ditto. * libc/machine/configure.in: Ditto. * libc/machine/Makefile.in: Regenerated. * libc/machine/aclocal.m4: Ditto. * libc/machine/configure: Ditto. * libc/machine/xc16x/Makefile.am: New file. * libc/machine/xc16x/Makefile.in: Ditto. * libc/machine/xc16x/aclocal.m4: Ditto. * libc/machine/xc16x/configure: Ditto. * libc/machine/xc16x/configure.in: Ditto. * libc/machine/xc16x/putchar.c: Ditto. * libc/machine/xc16x/puts.c: Ditto. * libc/machine/xc16x/setjmp.S: Ditto.
Diffstat (limited to 'newlib/configure.host')
-rw-r--r--newlib/configure.host8
1 files changed, 7 insertions, 1 deletions
diff --git a/newlib/configure.host b/newlib/configure.host
index 175f8669a..d77406b34 100644
--- a/newlib/configure.host
+++ b/newlib/configure.host
@@ -269,6 +269,9 @@ case "${host_cpu}" in
x86_64)
machine_dir=x86_64
;;
+ xc16x*)
+ machine_dir=xc16x
+ ;;
xstormy16)
machine_dir=xstormy16
newlib_cflags="${newlib_cflags} -DMALLOC_PROVIDED"
@@ -779,7 +782,10 @@ case "${host}" in
w65-*-*)
syscall_dir=syscalls
newlib_cflags="${newlib_cflags} -DSMALL_DTOA -DSMALL_MEMORY"
- ;;
+ ;;
+ xc16x-*)
+ syscall_dir=syscalls
+ ;;
xscale-*-*)
syscall_dir=syscalls
newlib_cflags="${newlib_cflags} -DHAVE_SYSTEM -DHAVE_RENAME"