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]

Re: [New WinCE support] [patch 4/4] The bulk of the code.


Daniel Jacobowitz wrote:
Please put arm*-*-mingw32ce* up higher, near other ARM targets - the
case statement is pretty much sorted.

Ooops, ended up committing without this change. Sorry for that. Committed the attached as obvious.

Cheers,
Pedro Alves



Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/ChangeLog,v
retrieving revision 1.117
diff -u -p -r1.117 ChangeLog
--- ChangeLog	29 Mar 2007 01:10:37 -0000	1.117
+++ ChangeLog	29 Mar 2007 01:44:25 -0000
@@ -1,5 +1,10 @@
 2007-03-29  Pedro Alves  <pedro_alves@portugalmail.pt>
 
+	* configure.srv (arm*-*-mingw32ce*): Move near the other
+	arm targets.
+
+2007-03-29  Pedro Alves  <pedro_alves@portugalmail.pt>
+
 	* configure.ac: Add errno checking.
 	(AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
 	sys/file.h and malloc.h.
Index: configure.srv
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/configure.srv,v
retrieving revision 1.22
diff -u -p -r1.22 configure.srv
--- configure.srv	29 Mar 2007 01:06:47 -0000	1.22
+++ configure.srv	29 Mar 2007 01:44:25 -0000
@@ -33,6 +33,12 @@ case "${target}" in
 			  srv_regobj=reg-arm.o
 			fi
 			;;
+  arm*-*-mingw32ce*)	srv_regobj=reg-arm.o
+			srv_tgtobj="win32-low.o win32-arm-low.o"
+			srv_tgtobj="${srv_tgtobj} wincecompat.o"
+			srv_mingw=yes
+			srv_mingwce=yes
+			;;
   crisv32-*-linux*)	srv_regobj=reg-crisv32.o
 			srv_tgtobj="linux-low.o linux-crisv32-low.o"
 			srv_linux_regsets=yes
@@ -52,12 +58,6 @@ case "${target}" in
 			srv_linux_regsets=yes
 			srv_linux_thread_db=yes
 			;;
-  arm*-*-mingw32ce*)	srv_regobj=reg-arm.o
-			srv_tgtobj="win32-low.o win32-arm-low.o"
-			srv_tgtobj="${srv_tgtobj} wincecompat.o"
-			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]