From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26389 invoked by alias); 17 May 2002 15:20:08 -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 26382 invoked from network); 17 May 2002 15:20:07 -0000 Received: from unknown (HELO fw-cam.cambridge.arm.com) (193.131.176.3) by sources.redhat.com with SMTP; 17 May 2002 15:20:07 -0000 Received: by fw-cam.cambridge.arm.com; id QAA06223; Fri, 17 May 2002 16:20:06 +0100 (BST) Received: from unknown(172.16.1.2) by fw-cam.cambridge.arm.com via smap (V5.5) id xma005699; Fri, 17 May 02 16:19:43 +0100 Received: from cam-mail2.cambridge.arm.com (cam-mail2.cambridge.arm.com [172.16.1.91]) by cam-admin0.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id QAA25263; Fri, 17 May 2002 16:19:41 +0100 (BST) Received: from sun18.cambridge.arm.com (sun18.cambridge.arm.com [172.16.2.18]) by cam-mail2.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id QAA12783; Fri, 17 May 2002 16:19:41 +0100 (BST) Message-Id: <200205171519.QAA12783@cam-mail2.cambridge.arm.com> To: "Kevin \"Squail\" Endres" cc: "'Daniel Jacobowitz'" , Richard.Earnshaw@arm.com, gdb@sources.redhat.com Reply-To: Richard.Earnshaw@arm.com Organization: ARM Ltd. X-Telephone: +44 1223 400569 (direct+voicemail), +44 1223 400400 (switchbd) X-Fax: +44 1223 400410 X-Address: ARM Ltd., 110 Fulbourn Road, Cherry Hinton, Cambridge CB1 9NJ. X-Url: http://www.arm.com/ Subject: Re: cross targeted gdb and corefiles In-reply-to: Your message of "Thu, 16 May 2002 15:01:22 PDT." <43CB1396676FD4119F03001083FD2994F5F223@neptune.kirkland.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 17 May 2002 08:20:00 -0000 From: Richard Earnshaw X-SW-Source: 2002-05/txt/msg00223.txt.bz2 kevine@wildseed.com said: > (given that there is no fp on arm - is the supply_fpregset really > necessary???) AFAIK The ARM/Linux ABI currently uses the FPA instruction set, which means that you will need a floating point emulator on most ARM systems (main exception is the ARM7500FE, but even there you will need an emulator to handle the corner-cases that the hardware bounces). So yes, you probably do need to supply the fpregset if you want to claim full support. R.