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]

[New WinCE support] [patch 1/4] : mv win32-i386-low.c win32-low.c


This patch renames gdbserver/win32-i386-low.c to
gdbserver/win32-low.c.  Well, actually, it is mostly a
ChangeLog entry, as it is useless to post a patch for the file move.
Patch 4 will then move the i386 specifics into a new
win32-i386-low.c, and add a win32-arm-low.c with ARM stuff.


gdbserver/ChangeLog

	* win32-i386-low.c: Rename to ...
	* win32-low.c: ... this.
	* configure.srv: Replace win32-i386-low.o with win32-low.o.
	* Makefile.in: Likewise.

---
 gdb/gdbserver/Makefile.in   |    2 +-
 gdb/gdbserver/configure.srv |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Index: src/gdb/gdbserver/configure.srv
===================================================================
--- src.orig/gdb/gdbserver/configure.srv	2007-03-15 00:27:36.000000000 +0000
+++ src/gdb/gdbserver/configure.srv	2007-03-15 02:25:20.000000000 +0000
@@ -44,7 +44,7 @@ case "${target}" in
 			srv_linux_thread_db=yes
 			;;
   i[34567]86-*-cygwin*)	srv_regobj=reg-i386.o
-			srv_tgtobj="win32-i386-low.o"
+			srv_tgtobj="win32-low.o"
 			;;
   i[34567]86-*-linux*)	srv_regobj=reg-i386-linux.o
 			srv_tgtobj="linux-low.o linux-i386-low.o i387-fp.o"
@@ -53,7 +53,7 @@ case "${target}" in
 			srv_linux_thread_db=yes
 			;;
   i[34567]86-*-mingw*)	srv_regobj=reg-i386.o
-			srv_tgtobj="win32-i386-low.o"
+			srv_tgtobj="win32-low.o"
 			srv_mingw=yes
 			;;
   ia64-*-linux*)	srv_regobj=reg-ia64.o
Index: src/gdb/gdbserver/Makefile.in
===================================================================
--- src.orig/gdb/gdbserver/Makefile.in	2007-03-15 00:27:38.000000000 +0000
+++ src/gdb/gdbserver/Makefile.in	2007-03-15 02:25:20.000000000 +0000
@@ -310,7 +310,7 @@ linux-sh-low.o: linux-sh-low.c $(linux_l
 linux-x86-64-low.o: linux-x86-64-low.c $(linux_low_h) $(server_h) \
 	$(gdb_proc_service_h)
 
-win32-i386-low.o: win32-i386-low.c $(server_h) $(regdef_h) $(regcache_h)
+win32-low.o: win32-low.c $(server_h) $(regdef_h) $(regcache_h)
 
 spu-low.o: spu-low.c $(server_h)
 





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