From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9801 invoked by alias); 29 Jul 2002 21:59:53 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 9794 invoked from network); 29 Jul 2002 21:59:53 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 29 Jul 2002 21:59:53 -0000 Received: from int-mx2.corp.redhat.com (nat-pool-rdu.redhat.com [172.16.52.200] (may be forged)) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id g6TLlgs10212 for ; Mon, 29 Jul 2002 17:47:42 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g6TLxou17362; Mon, 29 Jul 2002 17:59:50 -0400 Received: from romulus.sfbay.redhat.com (remus.sfbay.redhat.com [172.16.27.252]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g6TLxnj20514; Mon, 29 Jul 2002 14:59:49 -0700 Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g6TLxl011379; Mon, 29 Jul 2002 14:59:47 -0700 Date: Mon, 29 Jul 2002 15:07:00 -0000 From: Kevin Buettner Message-Id: <1020729215947.ZM11378@localhost.localdomain> In-Reply-To: Martin Gadbois "[PATCH] Cross target core debugging: host=i386, Target=PPC" (Jul 29, 4:59pm) References: <3D45ACCC.9040803@colubris.com> To: Martin Gadbois , gdb-patches@sources.redhat.com Subject: Re: [PATCH] Cross target core debugging: host=i386, Target=PPC MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-07/txt/msg00564.txt.bz2 On Jul 29, 4:59pm, Martin Gadbois wrote: > diff -Naur gdb-5.2/gdb/config/powerpc/linux.mt gdb-5.2-ppc-core/gdb/config/powerpc/linux.mt > --- gdb-5.2/gdb/config/powerpc/linux.mt Fri Oct 19 20:16:44 2001 > +++ gdb-5.2-ppc-core/gdb/config/powerpc/linux.mt Mon Jul 29 16:25:49 2002 > @@ -1,5 +1,5 @@ > # Target: Motorola PPC on Linux > -TDEPFILES= rs6000-tdep.o ppc-linux-tdep.o solib.o solib-svr4.o solib-legacy.o > +TDEPFILES= rs6000-tdep.o ppc-linux-tdep.o solib.o solib-svr4.o solib-legacy.o corelow.o core-regset.o > TM_FILE= tm-linux.h > > SIM_OBS = remote-sim.o > diff -Naur gdb-5.2/gdb/core-regset.c gdb-5.2-ppc-core/gdb/core-regset.c > --- gdb-5.2/gdb/core-regset.c Fri Aug 3 17:34:01 2001 > +++ gdb-5.2-ppc-core/gdb/core-regset.c Mon Jul 29 15:45:28 2002 > @@ -35,13 +35,6 @@ > */ > > #include "defs.h" > - > -#include > -#ifdef HAVE_SYS_PROCFS_H > -#include > -#endif > -#include > -#include > #include "gdb_string.h" > > #include "inferior.h" Hi Martin, Can you explain the reason for the above change? Thanks, Kevin