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: [patch] nto gdbserver


New patch attached. I couldn't figure out the ordering of dependency
lists in gdbserver/Makefile.in ... so I just tried it put the lines in
as alphabetic order as possible.


ChangeLog:

* Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
* nto-x86-low.c: Include server.h


Thank you,

-- 
Aleksandar Ristovski
QNX Software Systems
Index: gdb/gdbserver/Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/Makefile.in,v
retrieving revision 1.85
diff -u -p -r1.85 Makefile.in
--- gdb/gdbserver/Makefile.in	9 Apr 2010 03:40:00 -0000	1.85
+++ gdb/gdbserver/Makefile.in	20 Apr 2010 20:32:12 -0000
@@ -274,6 +274,8 @@ server_h = $(srcdir)/server.h $(regcache
 
 linux_low_h = $(srcdir)/linux-low.h
 
+nto_low_h = $(srcdir)/nto-low.h
+
 event-loop.o: event-loop.c $(server_h)
 hostio.o: hostio.c $(server_h)
 hostio-errno.o: hostio-errno.c $(server_h)
@@ -319,6 +321,9 @@ linux-x86-low.o: linux-x86-low.c $(linux
 	$(gdb_proc_service_h) $(i386_low_h)
 linux-xtensa-low.o: linux-xtensa-low.c xtensa-xtregs.c $(linux_low_h) $(server_h)
 
+nto-low.o: nto-low.c $(server_h) $(nto_low_h)
+nto-x86-low.o: nto-x86-low.c $(server_h) $(nto_low_h) $(regdef_h) $(regcache_h)
+
 win32_low_h = $(srcdir)/win32-low.h
 
 win32-low.o: win32-low.c $(win32_low_h) $(server_h) $(regdef_h) $(regcache_h)
Index: gdb/gdbserver/nto-x86-low.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbserver/nto-x86-low.c,v
retrieving revision 1.2
diff -u -p -r1.2 nto-x86-low.c
--- gdb/gdbserver/nto-x86-low.c	1 Jan 2010 07:31:49 -0000	1.2
+++ gdb/gdbserver/nto-x86-low.c	20 Apr 2010 20:32:12 -0000
@@ -17,7 +17,7 @@
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
-
+#include "server.h"
 #include "nto-low.h"
 #include "regdef.h"
 #include "regcache.h"

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