diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-02-03 00:17:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-02-03 00:17:20 +0000 |
commit | 0e034c7751ab65989cc41d80e398c1fc6e835f8c (patch) | |
tree | 858fcc62b870814b2a9af744014b8ca8eb5ca2b4 /gas/configure.in | |
parent | 6d0b44264fb12b44fa3da4fd7fb968bb050b961c (diff) | |
download | gdb-0e034c7751ab65989cc41d80e398c1fc6e835f8c.zip gdb-0e034c7751ab65989cc41d80e398c1fc6e835f8c.tar.gz gdb-0e034c7751ab65989cc41d80e398c1fc6e835f8c.tar.bz2 |
Mon Feb 2 18:30:34 1998 Steve Haworth <steve@pm.cse.rmit.EDU.AU>
Add tms320c30 support:
* config/tc-tic30.h: New file.
* config/tc-tic30.c: New file.
* config/obj-coff.h: If TC_TIC30, include coff/tic30.h and define
TARGET_FORMAT as "coff-tic30".
* configure.in (tic30-*-*aout*, tic30-*-*coff*): New targets.
* Makefile.am: Rebuild dependencies.
(CPU_TYPES): Add tic30.
(CPU_OBJ_VALID): tic30-aout is valid.
(TARGET_CPU_CFILES): Add config/tc-tic30.c.
(TARGET_CPU_HFILES): Add config/tc-tic30.h.
* configure, Makefile.in: Rebuild.
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gas/configure.in b/gas/configure.in index 534fe3c..2c023e6 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -286,6 +286,8 @@ changequote([,])dnl sparc-*-netbsd*) fmt=aout em=nbsd bfd_gas=yes ;; sparc-*-openbsd*) fmt=aout em=nbsd bfd_gas=yes ;; + tic30-*-*aout*) fmt=aout bfd_gas=yes ;; + tic30-*-*coff*) fmt=coff bfd_gas=yes ;; # start-sanitize-tic80 tic80-*-*) fmt=coff ;; # end-sanitize-tic80 @@ -344,7 +346,7 @@ changequote([,])dnl # do we need the opcodes library? case ${cpu_type} in - vax | i386) + vax | i386 | tic30) ;; *) need_opcodes=yes |