From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 373 invoked by alias); 4 May 2011 19:23:04 -0000 Received: (qmail 363 invoked by uid 22791); 4 May 2011 19:23:03 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 04 May 2011 19:22:48 +0000 Received: (qmail 20967 invoked from network); 4 May 2011 19:22:47 -0000 Received: from unknown (HELO scottsdale.localnet) (pedro@127.0.0.2) by mail.codesourcery.com with ESMTPA; 4 May 2011 19:22:47 -0000 From: Pedro Alves To: gdb-patches@sourceware.org Subject: Re: Remove code handling old ARM aliases from GDB Date: Wed, 04 May 2011 19:23:00 -0000 User-Agent: KMail/1.13.5 (Linux/2.6.35-28-generic; KDE/4.6.2; x86_64; ; ) Cc: "Joseph S. Myers" References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201105042023.02115.pedro@codesourcery.com> 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: 2011-05/txt/msg00110.txt.bz2 On Wednesday 04 May 2011 20:00:14, Joseph S. Myers wrote: > There used to be various alternative target triplets for some ARM > targets such as strongarm*-*-*, thumb*-*-* and xscale*-*-*. These are > now handled by config.sub as aliases for arm*-*-* (or in the case of > ep9312*-*-*, rejected outright by config.sub), so no code in configure > scripts or testsuites needs to allow for the old alternative names any > more; this patch removes code handling them from GDB. I previously > removed such code from binutils in > . OK to > commit? Sure, thanks. > --- sim/testsuite/configure 26 Apr 2010 16:23:23 -0000 1.6 > +++ sim/testsuite/configure 4 May 2011 18:52:03 -0000 > @@ -1823,13 +1823,16 @@ > sim_igen=no > sim_arch= > case "${target}" in > - arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*) > + arm*-*-*) > sim_arch=arm > sim_testsuite=yes > ;; > avr*-*-*) > sim_arch=avr > ;; > + bfin-*-*) > + sim_arch=bfin > + ;; Eh, looks like someone forgot to regenerate this file before. I see that missing on the branch as well. I'll fix it. > cr16*-*-*) > sim_arch=cr16 > sim_testsuite=yes -- Pedro Alves