This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Remove code handling old ARM aliases from GDB


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
> <http://sourceware.org/ml/binutils/2011-03/msg00576.html>.  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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]