This is the mail archive of the gdb-patches@sources.redhat.com 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]

PATCH ARM/NetBSD is now fully multi-arch



Well config/arm/tm-nbsd.h only contained one final define; and that set a 
macro which was never used.

Since config/arm/tm-arm.h also only contains one define, and that doesn't 
apply to NetBSD (since it has always used gcc), I've taken the plunge and 
bumped arm/NetBSD to being fully multi-arch.

RIP config/arm/tm-nbsd.h!

2002-02-19  Richard Earnshaw  <rearnsha@arm.com>

	* configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
	* config/arm/nbsd.mt (TM_FILE): Delete.
	* config/arm/tm-nbsd.h: Delete.


Index: configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.52
diff -p -r1.52 configure.tgt
*** configure.tgt	2002/02/14 05:31:46	1.52
--- configure.tgt	2002/02/19 14:00:36
*************** arm*-wince-pe)		gdb_target=wince ;;
*** 55,61 ****
  arm*-*-linux*)		gdb_target=linux
  			build_gdbserver=yes
  			;;
! arm*-*-netbsd*)		gdb_target=nbsd ;;
  arm*-*-* | thumb*-*-* | strongarm*-*-*)
  			gdb_target=embed
                          configdirs="$configdirs rdi-share"
--- 55,62 ----
  arm*-*-linux*)		gdb_target=linux
  			build_gdbserver=yes
  			;;
! arm*-*-netbsd*)		gdb_target=nbsd
! 			gdb_multi_arch=yes ;;
  arm*-*-* | thumb*-*-* | strongarm*-*-*)
  			gdb_target=embed
                          configdirs="$configdirs rdi-share"
Index: config/arm/nbsd.mt
===================================================================
RCS file: /cvs/src/src/gdb/config/arm/nbsd.mt,v
retrieving revision 1.3
diff -p -r1.3 nbsd.mt
*** nbsd.mt	2002/02/18 18:34:48	1.3
--- nbsd.mt	2002/02/19 14:00:41
***************
*** 1,3 ****
  # Target: ARM running NetBSD
  TDEPFILES= arm-tdep.o armnbsd-tdep.o solib.o solib-svr4.o solib-sunos.o
- TM_FILE= tm-nbsd.h
--- 1,2 ----

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