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>2010-10-09 06:33:30 +0400
committerJeff Johnston <jjohnstn@redhat.com>2010-10-09 06:33:30 +0400
commit1571d0a51f2f1583783fad8449046d20bf7b439d (patch)
tree53193604ad911d0e81428670abe06b55637b711d /newlib/configure.host
parent4606798ea008ab8d3dcec4757198ac0294b46a6a (diff)
2010-10-08 Bernd Schmidt <bernds@codesourcery.com>
Joseph Myers <joseph@codesourcery.com> * configure.host: Handle tic6x targets. * libc/include/machine/ieeefp.h: Define endianness for C6X. * libc/include/machine/setjmp.h: Add __TMS320C6X__ case. * libc/machine/configure.in: Handle tic6x targets. * libc/machine/configure: Regenerate. * libc/machine/tic6x/Makefile.am, libc/machine/tic6x/configure.in, libc/machine/tic6x/setjmp.S: New. * libc/machine/tic6x/Makefile.in, libc/machine/tic6x/aclocal.m4, libc/machine/tic6x/configure: New (generated).
Diffstat (limited to 'newlib/configure.host')
-rw-r--r--newlib/configure.host10
1 files changed, 10 insertions, 0 deletions
diff --git a/newlib/configure.host b/newlib/configure.host
index 843ae39fb..001a6bc56 100644
--- a/newlib/configure.host
+++ b/newlib/configure.host
@@ -249,6 +249,9 @@ case "${host_cpu}" in
tic4x|c4x)
machine_dir=tic4x
;;
+ tic6x)
+ machine_dir=tic6x
+ ;;
tic80*)
machine_dir=tic80
;;
@@ -496,6 +499,10 @@ case "${host}" in
have_crt0="no"
fi
;;
+ tic6x*)
+ newlib_cflags="${newlib_cflags} -DMISSING_SYSCALL_NAMES"
+ have_crt0="no"
+ ;;
tic80*)
sys_dir=tic80
;;
@@ -762,6 +769,9 @@ case "${host}" in
newlib_cflags="${newlib_cflags} -DARM_RDI_MONITOR"
fi
;;
+ tic6x*)
+ syscall_dir=
+ ;;
tic80*)
syscall_dir=syscalls
;;