This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB 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]

[commit] Remove broken targets arm-*-nto* and sh-*-nto*


Hello,

I've noticed configure.tgt contains two targets that cannot build
as they reference non-existent .mt files:
 arm-*-nto*)           gdb_target=nto ;;
 sh-*-nto*)            gdb_target=nto ;;

Those two lines came in by the following CVS commit:
http://sourceware.org/ml/gdb-cvs/2003-05/msg00037.html

However, the form of that patch as approved on gdb-patches:
http://sourceware.org/ml/gdb-patches/2003-05/msg00004.html

does not actually contain those lines, so I'm assuming this
was an accidental check-in.

As those targets never actually did anything, I don't think
it makes sense to formally obsolete them; the following patch
simply removes the configure.tgt lines.

Committed to mainline.

Bye,
Ulrich



ChangeLog:

	* configure.tgt (arm-*-nto*, sh-*-nto*): Remove.


Index: gdb/configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.187
diff -c -p -r1.187 configure.tgt
*** gdb/configure.tgt	30 Mar 2007 22:50:33 -0000	1.187
--- gdb/configure.tgt	13 Apr 2007 00:31:19 -0000
*************** arm*-*-linux*)		gdb_target=linux
*** 81,87 ****
  			;;
  arm*-*-netbsd* | arm*-*-knetbsd*-gnu)
  			gdb_target=nbsd ;;
- arm-*-nto*)		gdb_target=nto ;;
  arm*-*-openbsd*)	gdb_target=obsd ;;
  arm*-*-* | thumb*-*-* | strongarm*-*-*)
  			gdb_target=embed
--- 81,86 ----
*************** sh-*-linux*)		gdb_target=linux
*** 201,207 ****
  			;;
  sh*-*-netbsdelf* | sh*-*-knetbsd*-gnu)
  			gdb_target=nbsd ;;
- sh-*-nto*)		gdb_target=nto ;;
  sh*-*-openbsd*)		gdb_target=obsd ;;
  sh64-*-elf*)		gdb_target=sh64 ;;
  sh*)			gdb_target=embed ;;
--- 200,205 ----
-- 
  Dr. Ulrich Weigand
  GNU Toolchain for Linux on System z and Cell BE
  Ulrich.Weigand@de.ibm.com


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