summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Wall <twall@alum.mit.edu>2000-06-20 13:59:03 +0000
committerTimothy Wall <twall@alum.mit.edu>2000-06-20 13:59:03 +0000
commita77f0527759e856a6409299e77fb5da929f8c3f2 (patch)
tree2b6568d3d1065c2695276e945b0a77ba4297c525
parent312a70b72b05d11e705c8474dd571b2945f97f7f (diff)
downloadbinutils-redhat-a77f0527759e856a6409299e77fb5da929f8c3f2.tar.gz
TI C54x target added.
-rw-r--r--ChangeLog5
-rwxr-xr-xconfig.sub8
-rw-r--r--configure.in3
3 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c1548fa811..a2e89d4365 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-19 Timothy Wall <twall@cygnus.com>
+
+ * configure.in (noconfigdirs): Set noconfigdirs for tic54x target.
+ * config.sub: Add tic54x target.
+
2000-06-07 Phillip Thomas <pthomas@suse.de>
* README-maintainer-mode: New file: Contains notes on using
diff --git a/config.sub b/config.sub
index f414a431e8..a63870be37 100755
--- a/config.sub
+++ b/config.sub
@@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
# Free Software Foundation, Inc.
-version='2000-05-30'
+version='2000-06-04'
# This file is (in principle) common to ALL GNU software.
# The presence of a machine in this file suggests that SOME GNU software
@@ -257,7 +257,7 @@ case $basic_machine in
| f301-* | armv*-* | s390-* | sv1-* | t3e-* \
| m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \
| thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* \
- | bs2000-*)
+ | bs2000-* | tic54x-* | c54x-*)
;;
# Recognize the various machine names and aliases which stand
# for a CPU type and a company and sometimes even an OS.
@@ -786,6 +786,10 @@ case $basic_machine in
basic_machine=i386-sequent
os=-dynix
;;
+ tic54x | c54x*)
+ basic_machine=tic54x-unknown
+ os=-coff
+ ;;
t3e)
basic_machine=t3e-cray
os=-unicos
diff --git a/configure.in b/configure.in
index c14f135056..3759cd88fb 100644
--- a/configure.in
+++ b/configure.in
@@ -613,6 +613,9 @@ case "${target}" in
c4x-*-*)
noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss"
;;
+ c54x*-*-* | tic54x-*-*)
+ noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio target-librx target-libgloss gcc gdb newlib"
+ ;;
thumb-*-coff)
noconfigdirs="$noconfigdirs target-libgloss"
;;