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]

patch: Windows CE on x86


The patch attached is a trivial one to add the target(s) for building
gdbserver for a x86 CE target.

	Danny
-- 
Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/ChangeLog,v
retrieving revision 1.260
diff -u -r1.260 ChangeLog
--- ChangeLog	3 Apr 2009 20:15:51 -0000	1.260
+++ ChangeLog	17 Apr 2009 18:48:10 -0000
@@ -1,3 +1,7 @@
+2009-04-17  Danny Backx  <dannybackx@users.sourceforge.net>
+
+	* configure.srv : Add x86 Windows CE target.
+
 2009-04-03  Ulrich Weigand  <uweigand@de.ibm.com>
 
 	* inferiors.c (get_thread_process): Make global.
Index: configure.srv
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/configure.srv,v
retrieving revision 1.39
diff -u -r1.39 configure.srv
--- configure.srv	18 Nov 2008 21:48:48 -0000	1.39
+++ configure.srv	17 Apr 2009 18:48:10 -0000
@@ -61,6 +61,15 @@
 			srv_linux_regsets=yes
 			srv_linux_thread_db=yes
 			;;
+  i[34567]86-*-mingw*ce*)
+                      srv_regobj=reg-i386.o
+                      srv_tgtobj="win32-low.o win32-i386-low.o"
+                      srv_tgtobj="${srv_tgtobj} wincecompat.o"
+                      # hostio_last_error implementation is in win32-low.c
+                      srv_hostio_err_objs=""
+                      srv_mingw=yes
+                      srv_mingwce=yes
+                      ;;
   i[34567]86-*-mingw*)	srv_regobj=reg-i386.o
 			srv_tgtobj="win32-low.o win32-i386-low.o"
 			srv_mingw=yes

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