diff options
author | Svein E. Seldal <Svein.Seldal@solidas.com> | 2002-12-09 08:10:20 +0000 |
---|---|---|
committer | Svein Seldal <sveinse@gcc.gnu.org> | 2002-12-09 08:10:20 +0000 |
commit | 7f0db92aa611e0b22c5d3d2f5048d7c951ed8277 (patch) | |
tree | acda350d9d8f804ee5969994ddae735674387d74 /gcc/config.gcc | |
parent | 1d9033cb3fe3ddb0ff14dc2eed9af05a83f80886 (diff) | |
download | gcc-7f0db92aa611e0b22c5d3d2f5048d7c951ed8277.zip gcc-7f0db92aa611e0b22c5d3d2f5048d7c951ed8277.tar.gz gcc-7f0db92aa611e0b22c5d3d2f5048d7c951ed8277.tar.bz2 |
config.sub: Import from master repository
* config.sub: Import from master repository
* config.guess: Ditto
* MAINTAINERS: Added Svein Seldal under write after approval
* gcc/config.gcc: Added tic4x-* target as an alias to c4x-*
From-SVN: r59955
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f2a6b16..3e889ae 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -283,6 +283,9 @@ sparc*-*-*) sh[123456789l]*-*-*) cpu_type=sh ;; +tic4x-*-*) + cpu_type=c4x + ;; esac tm_file=${cpu_type}/${cpu_type}.h @@ -685,7 +688,7 @@ arm-*-pe*) ;; avr-*-*) ;; -c4x-*-rtems*) +c4x-*-rtems* | tic4x-*-rtems*) xm_defines=POSIX tmake_file="c4x/t-c4x t-rtems" tm_file="c4x/c4x.h c4x/rtems.h rtems.h" @@ -695,7 +698,7 @@ c4x-*-rtems*) c_target_objs="c4x-c.o" cxx_target_objs="c4x-c.o" ;; -c4x-*) +c4x-* | tic4x-*) tmake_file=c4x/t-c4x c_target_objs="c4x-c.o" cxx_target_objs="c4x-c.o" |