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] configure consistantly for any and all FreeBSD targets


I committed this patch.

Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.3332
diff -u -r1.3332 ChangeLog
--- ChangeLog	20 Oct 2002 01:38:40 -0000	1.3332
+++ ChangeLog	20 Oct 2002 04:37:10 -0000
@@ -1,3 +1,9 @@
+2002-10-19  David O'Brien  <obrien@FreeBSD.org>
+
+	* configure.tgt (alpha*-*-freebsd*, i[3456]86-*-freebsd*,
+	sparc64-*-freebsd*): Combine to make *-*-freebsd* with gdb_target set
+	to fbsd.  Removes need for additional freebsd tupples.
+
 2002-10-19  Adam Fedor  <fedor@gnu.org>
 
 	* objc-exp.y (name_not_typename): Fix invalid comment.	
Index: configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.85
diff -u -r1.85 configure.tgt
--- configure.tgt	2 Sep 2002 17:24:50 -0000	1.85
+++ configure.tgt	20 Oct 2002 04:37:10 -0000
@@ -38,9 +38,11 @@
 
 case "${target}" in
 
+*-*-freebsd*)		gdb_target=fbsd
+			;;
+
 alpha*-*-osf*)		gdb_target=alpha-osf1 ;;
 alpha*-*-linux*)	gdb_target=alpha-linux ;;
-alpha*-*-freebsd*)	gdb_target=fbsd ;;
 alpha*-*-netbsd*)	gdb_target=nbsd ;;
 alpha*-*-*)		gdb_target=alpha ;;
 
@@ -91,7 +93,6 @@
 i[3456]86-ncr-*)	gdb_target=ncr3000 ;;
 # OBSOLETE i[3456]86-*-aix*)	gdb_target=i386aix ;;
 i[3456]86-*-bsd*)	gdb_target=i386bsd ;;
-i[3456]86-*-freebsd*)	gdb_target=fbsd ;;
 i[3456]86-*-netbsd*)	gdb_target=nbsd ;;
 i[3456]86-*-openbsd*)	gdb_target=nbsd ;;	# FIXME: needs its own target
 # OBSOLETE i[3456]86-*-os9k)	gdb_target=i386os9k ;;
@@ -268,8 +269,6 @@
 # regs (some of which are usable in v8plus) so sp64sol.mt hasn't been
 # deleted though presumably it should be eventually.
 #sparc64-*-solaris2*)	gdb_target=sp64sol2 ;;
-sparc64-*-freebsd*|ultrasparc-*-freebsd*|sparcv9-*-freebsd*)
-			gdb_target=fbsd ;;
 sparc64-*-linux*)	gdb_target=sp64linux ;;
 sparc64-*-netbsd*)	gdb_target=nbsd64 ;;
 sparcv9-*-* | sparc64-*-*) gdb_target=sp64 ;;
@@ -292,7 +291,6 @@
 x86_64-*-linux*)	gdb_target=x86-64linux
 			build_gdbserver=yes
 			;;
-
 
 z8k-*-coff*)		gdb_target=z8k ;;
 


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