From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29079 invoked by alias); 14 Aug 2007 12:54:04 -0000 Received: (qmail 28951 invoked by uid 22791); 14 Aug 2007 12:54:03 -0000 X-Spam-Check-By: sourceware.org Received: from NaN.false.org (HELO nan.false.org) (208.75.86.248) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 14 Aug 2007 12:53:58 +0000 Received: from nan.false.org (localhost [127.0.0.1]) by nan.false.org (Postfix) with ESMTP id 0CCB698308 for ; Tue, 14 Aug 2007 12:53:58 +0000 (GMT) Received: from caradoc.them.org (22.svnf5.xdsl.nauticom.net [209.195.183.55]) by nan.false.org (Postfix) with ESMTP id E0FF498100 for ; Tue, 14 Aug 2007 12:53:57 +0000 (GMT) Received: from drow by caradoc.them.org with local (Exim 4.67) (envelope-from ) id 1IKvuF-00031H-8C for gdb-patches@sourceware.org; Tue, 14 Aug 2007 08:53:55 -0400 Date: Tue, 14 Aug 2007 12:54:00 -0000 From: Daniel Jacobowitz To: gdb-patches@sourceware.org Subject: Cross core support for i386-linux-gnu Message-ID: <20070814125355.GA11503@caradoc.them.org> Mail-Followup-To: gdb-patches@sourceware.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.15 (2007-04-09) X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-08/txt/msg00284.txt.bz2 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 * 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