From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17971 invoked by alias); 5 Sep 2003 10:17:55 -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 17912 invoked from network); 5 Sep 2003 10:17:50 -0000 Received: from unknown (HELO cam-admin0.cambridge.arm.com) (193.131.176.54) by sources.redhat.com with SMTP; 5 Sep 2003 10:17:50 -0000 Received: from pc960.cambridge.arm.com (pc960.cambridge.arm.com [10.1.205.4]) by cam-admin0.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id LAA25950; Fri, 5 Sep 2003 11:17:44 +0100 (BST) Received: from pc960.cambridge.arm.com (rearnsha@localhost) by pc960.cambridge.arm.com (8.11.6/8.9.3) with ESMTP id h85AHhX28658; Fri, 5 Sep 2003 11:17:43 +0100 Message-Id: <200309051017.h85AHhX28658@pc960.cambridge.arm.com> X-Authentication-Warning: pc960.cambridge.arm.com: rearnsha owned process doing -bs To: Brendan Conoboy cc: gdb-patches@sources.redhat.com, Richard.Earnshaw@arm.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: small configuration patch to add xscale-linux support In-reply-to: Your message of "Wed, 23 Jul 2003 12:23:45 MDT." <3F1ED2B1.8010503@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 05 Sep 2003 10:17:00 -0000 From: Richard Earnshaw X-SW-Source: 2003-09/txt/msg00060.txt.bz2 > This patch allows one to configure an xscale-linux-gnu gdb (which is > essentially the same thing as arm-linux-gnu for gdb, but not for other > tools). Works for me. > > -Brendan (blc@redhat.com) > > ChangeLog: > Mon Jul 21 20:10:16 UTC 2003 Brendan Conoboy > > configure.host: Set gdb_host_cpu=arm when host_cpu=xscale > > gdbserver/ChangeLog: > Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy > > configure.srv: Add xscale*linux copy of arm*linux entry. Rather than copy the entry, I think you should just add an extra alternative to the existing entry: - arm*-*-linux*) srv_regobj=reg-arm.o + arm*-*-linux* | xscale*-*-linux*) srv_regobj=reg-arm.o That keeps things more maintainable if the list of files ever change. R.