This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] top-level config - new tic4x target


Hi,

Heres a patch for adding a new tic4x target.

Svein


ChangeLog:
2002-08-13  Svein E. Seldal  <Svein.Seldal@solidas.com>

	* config.sub: Added tic4x (and c4x) target
	* configure.in: Added tic4x (and c4x) target


? Patch
? SES_BFDfiles.txt
? SES_log.txt
? patches
Index: config.sub
===================================================================
RCS file: /cvs/src/src/config.sub,v
retrieving revision 1.37
diff -c -3 -p -r1.37 config.sub
*** config.sub	23 Aug 2002 21:22:39 -0000	1.37
--- config.sub	26 Aug 2002 08:23:59 -0000
***************
*** 3,9 ****
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  #   2000, 2001, 2002 Free Software Foundation, Inc.
  
! timestamp='2002-08-22'
  
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
--- 3,9 ----
  #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  #   2000, 2001, 2002 Free Software Foundation, Inc.
  
! timestamp='2002-08-26'
  
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
*************** case $basic_machine in
*** 229,235 ****
  	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
  	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
  	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
! 	| c4x | clipper \
  	| d10v | d30v | dlx | dsp16xx \
  	| fr30 | frv \
  	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
--- 229,235 ----
  	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
  	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
  	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
! 	| clipper \
  	| d10v | d30v | dlx | dsp16xx \
  	| fr30 | frv \
  	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
*************** case $basic_machine in
*** 294,300 ****
  	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
  	| avr-* \
  	| bs2000-* \
! 	| c[123]* | c30-* | [cjt]90-* | c54x-* \
  	| clipper-* | cydra-* \
  	| d10v-* | d30v-* | dlx-* \
  	| elxsi-* \
--- 294,300 ----
  	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
  	| avr-* \
  	| bs2000-* \
! 	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* \
  	| clipper-* | cydra-* \
  	| d10v-* | d30v-* | dlx-* \
  	| elxsi-* \
*************** case $basic_machine in
*** 329,335 ****
  	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
  	| sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
  	| sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
! 	| tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \
  	| v850-* | v850e-* | vax-* \
  	| we32k-* \
  	| x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
--- 329,335 ----
  	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
  	| sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
  	| sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
! 	| tahoe-* | thumb-* | tic30-* | tic4x-* | tic54x-* | tic80-* | tron-* \
  	| v850-* | v850e-* | vax-* \
  	| we32k-* \
  	| x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
*************** case $basic_machine in
*** 913,918 ****
--- 913,922 ----
  		basic_machine=t90-cray
  		os=-unicos
  		;;
+         tic4x | c4x)
+ 		basic_machine=tic4x-unknown
+ 		os=-coff
+ 		;;
  	tic54x | c54x*)
  		basic_machine=tic54x-unknown
  		os=-coff
*************** case $basic_machine in
*** 1046,1055 ****
  		;;
  	pmac | pmac-mpw)
  		basic_machine=powerpc-apple
- 		;;
- 	c4x*)
- 		basic_machine=c4x-none
- 		os=-coff
  		;;
  	*-unknown)
  		# Make sure to match an already-canonicalized machine name.
--- 1050,1055 ----
Index: configure.in
===================================================================
RCS file: /cvs/src/src/configure.in,v
retrieving revision 1.103
diff -c -3 -p -r1.103 configure.in
*** configure.in	20 Aug 2002 03:04:03 -0000	1.103
--- configure.in	26 Aug 2002 08:24:00 -0000
*************** case "${target}" in
*** 379,385 ****
    avr-*-*)
      noconfigdirs="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
      ;;
!   c4x-*-*)
      noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
      ;;
    c54x*-*-* | tic54x-*-*)
--- 379,385 ----
    avr-*-*)
      noconfigdirs="$noconfigdirs target-libiberty ${libstdcxx_version} ${libgcj}"
      ;;
!   c4x-*-* | tic4x-*-*)
      noconfigdirs="$noconfigdirs ${libstdcxx_version} target-libgloss ${libgcj}"
      ;;
    c54x*-*-* | tic54x-*-*)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]