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]

Cross core support for i386-linux-gnu


Mark Kettenis did all the hard work to make core file host-independent
for the i386 target, and it was wired up for a variety of i386 / amd64
subtargets - but not this one :-(  Checked in after verifying that a
native i386-linux-gnu debugger could still read core files, and a
cross debugger was newly able to.

-- 
Daniel Jacobowitz
CodeSourcery

2007-08-14  Daniel Jacobowitz  <dan@codesourcery.com>

	* config/i386/linux.mh (NATDEPFILES): Move corelow.o from here...
	* config/i386/linux.mt (TDEPFILES): ...to here.

Index: config/i386/linux.mh
===================================================================
RCS file: /cvs/src/src/gdb/config/i386/linux.mh,v
retrieving revision 1.20
diff -u -p -r1.20 linux.mh
--- config/i386/linux.mh	25 Apr 2007 22:10:08 -0000	1.20
+++ config/i386/linux.mh	14 Aug 2007 12:51:02 -0000
@@ -1,7 +1,7 @@
 # Host: Intel 386 running GNU/Linux.
 
 NAT_FILE= nm-linux.h
-NATDEPFILES= inf-ptrace.o fork-child.o corelow.o \
+NATDEPFILES= inf-ptrace.o fork-child.o \
 	i386-nat.o i386-linux-nat.o \
 	proc-service.o linux-thread-db.o gcore.o \
 	linux-nat.o linux-fork.o
Index: config/i386/linux.mt
===================================================================
RCS file: /cvs/src/src/gdb/config/i386/linux.mt,v
retrieving revision 1.10
diff -u -p -r1.10 linux.mt
--- config/i386/linux.mt	13 Sep 2004 20:55:39 -0000	1.10
+++ config/i386/linux.mt	14 Aug 2007 12:51:02 -0000
@@ -1,4 +1,4 @@
 # Target: Intel 386 running GNU/Linux
 TDEPFILES= i386-tdep.o i386-linux-tdep.o glibc-tdep.o i387-tdep.o \
-	solib.o solib-svr4.o symfile-mem.o
+	solib.o solib-svr4.o symfile-mem.o corelow.o
 DEPRECATED_TM_FILE= tm-linux.h


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