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]

[COMMIT] Add OpenBSD/arm support


Finally got accessto an OpenBSD/arm box.  It's very similar to
NetBSD/arm.  I'll commit a few fixes to the arm stuff in a moment to
make it compile with -Werror and to modernize the NetBSD code such
that I don't have to fix inftarg.c to compile with -Werror.  I'll add
some blurb in NEWS after I've done that.

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* configure.host: Add arm*-*-openbsd*.
	* configure.tgt: Add arm*-*-openbsd*.

Index: configure.host
===================================================================
RCS file: /cvs/src/src/gdb/configure.host,v
retrieving revision 1.92
diff -u -p -r1.92 configure.host
--- configure.host 4 Jan 2005 22:59:44 -0000 1.92
+++ configure.host 22 May 2005 19:06:10 -0000
@@ -49,6 +49,7 @@ arm*-*-linux*)		gdb_host=linux ;;
 arm*-*-netbsdelf* | arm*-*-knetbsd*-gnu)
 			gdb_host=nbsdelf ;;
 arm*-*-netbsd*)		gdb_host=nbsdaout ;;
+arm*-*-openbsd*)	gdb_host=nbsdelf ;;
 
 hppa*-*-hpux* | hppa*-*-hiux*)
 			gdb_host=hpux ;;
Index: configure.tgt
===================================================================
RCS file: /cvs/src/src/gdb/configure.tgt,v
retrieving revision 1.165
diff -u -p -r1.165 configure.tgt
--- configure.tgt 18 May 2005 08:52:18 -0000 1.165
+++ configure.tgt 22 May 2005 19:06:10 -0000
@@ -54,6 +54,7 @@ arm*-*-linux*)		gdb_target=linux
 arm*-*-netbsd* | arm*-*-knetbsd*-gnu)
 			gdb_target=nbsd ;;
 arm-*-nto*)		gdb_target=nto ;;
+arm*-*-openbsd*)	gdb_target=nbsd ;;
 arm*-*-* | thumb*-*-* | strongarm*-*-*)
 			gdb_target=embed
 			build_rdi_share=yes


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