From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30944 invoked by alias); 16 May 2002 22:23:48 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 30814 invoked from network); 16 May 2002 22:23:45 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 16 May 2002 22:23:45 -0000 Received: from romulus.sfbay.redhat.com (romulus.sfbay.redhat.com [172.16.27.251]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id PAA02539; Thu, 16 May 2002 15:23:41 -0700 (PDT) Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g4GMNal19730; Thu, 16 May 2002 15:23:36 -0700 Date: Thu, 16 May 2002 15:23:00 -0000 From: Kevin Buettner Message-Id: <1020516222336.ZM19729@localhost.localdomain> In-Reply-To: "Kevin \"Squail\" Endres" "RE: cross targeted gdb and corefiles" (May 16, 3:01pm) References: <43CB1396676FD4119F03001083FD2994F5F223@neptune.kirkland.local> To: "Kevin \"Squail\" Endres" , "'Daniel Jacobowitz'" , Richard.Earnshaw@arm.com Subject: Re: cross targeted gdb and corefiles Cc: gdb@sources.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-05/txt/msg00200.txt.bz2 On May 16, 3:01pm, Kevin \Squail\ Endres wrote: > i moved the supply_* functions from i386-nat (only ones i could find in the > gdb source)to arm-linux-tdep.c. > (given that there is no fp on arm - is the supply_fpregset really > necessary???) I haven't been following this closely, but I think you need to move the supply_* functions from the arm version of the nat.c file to the arm tdep.c file. You have to make sure that there aren't any host dependencies though. I.e, you can't make use of system header files. Kevin