Re: [patch] [aarch64] add multiarch definitions for aarch64-linux-gnu

2012-11-21 Thread Marcus Shawcroft
> --- config/aarch64/t-aarch64-linux (revision 193639) > +++ config/aarch64/t-aarch64-linux (working copy) > @@ -20,3 +20,6 @@ > > LIB1ASMSRC = aarch64/lib1funcs.asm > LIB1ASMFUNCS = _aarch64_sync_cache_range > + > +AARCH_BE = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_define

Re: [patch] [aarch64] add multiarch definitions for aarch64-linux-gnu

2012-11-20 Thread Matthias Klose
Am 20.11.2012 13:47, schrieb Marcus Shawcroft: > Thanks Matthias, > >> +ARM_EB = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),eb) >> +ifeq (,$(ARM_EB)) >> +MULTIARCH_DIRNAME = $(call if_multiarch,aarch64-linux-gnu) >> +endif > > Can we use the name of the architecture, ARM -> AAR

Re: [patch] [aarch64] add multiarch definitions for aarch64-linux-gnu

2012-11-20 Thread Marcus Shawcroft
Thanks Matthias, > +ARM_EB = $(if $(findstring TARGET_BIG_ENDIAN_DEFAULT=1, $(tm_defines)),eb) > +ifeq (,$(ARM_EB)) > +MULTIARCH_DIRNAME = $(call if_multiarch,aarch64-linux-gnu) > +endif Can we use the name of the architecture, ARM -> AARCH64 Please can we have big endian wired up? +else +MULTI

Re: [patch] [aarch64] add multiarch definitions for aarch64-linux-gnu

2012-11-19 Thread Matthias Klose
Am 20.11.2012 00:39, schrieb Joseph S. Myers: > On Tue, 20 Nov 2012, Matthias Klose wrote: > >> This just adds the multiarch dirname for aarch64. ok for the trunk? There >> were >> macro redefinitions before in aarch64-linux.h >> (STANDARD_STARTFILE_PREFIX_[12]). >> I don't think these are nec

Re: [patch] [aarch64] add multiarch definitions for aarch64-linux-gnu

2012-11-19 Thread Joseph S. Myers
On Tue, 20 Nov 2012, Matthias Klose wrote: > This just adds the multiarch dirname for aarch64. ok for the trunk? There > were > macro redefinitions before in aarch64-linux.h > (STANDARD_STARTFILE_PREFIX_[12]). > I don't think these are necessary. Don't you need to allow for big-endian, and us

[patch] [aarch64] add multiarch definitions for aarch64-linux-gnu

2012-11-19 Thread Matthias Klose
This just adds the multiarch dirname for aarch64. ok for the trunk? There were macro redefinitions before in aarch64-linux.h (STANDARD_STARTFILE_PREFIX_[12]). I don't think these are necessary. Thanks, Matthias PS: ping on the patch for arm-linux-gnueabi multiarch. --- config/aarch64/t-aarch6