diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-05-10 05:03:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-05-10 05:03:22 +0000 |
commit | 6793475dc5465716602560e3c76f6e3a7f0737b5 (patch) | |
tree | fda695ca7e1890618dd53f31e963f37d38ce0c49 /eclass/toolchain.eclass | |
parent | Version bump (version is bumped to last update of pci.ids). Remove old. (diff) | |
download | gentoo-2-6793475dc5465716602560e3c76f6e3a7f0737b5.tar.gz gentoo-2-6793475dc5465716602560e3c76f6e3a7f0737b5.tar.bz2 gentoo-2-6793475dc5465716602560e3c76f6e3a7f0737b5.zip |
arm: rework default --with-arch selection to be more tolerant of endian variations #414395 by Bertrand Jacquin, to automatically throw away unknown arm encodings #264534, and to select vfpv3-d16 by default for hardfp targets -- people can override this at runtime if they wish via CFLAGS, or via EXTRA_ECONF when building gcc
Diffstat (limited to 'eclass/toolchain.eclass')
-rw-r--r-- | eclass/toolchain.eclass | 36 |
1 files changed, 23 insertions, 13 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 7eec040fd522..e77e55868539 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.533 2012/04/14 17:00:35 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.534 2012/05/10 05:03:22 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -962,22 +962,32 @@ gcc-compiler-configure() { local with_abi_map=() case $(tc-arch) in - arm) #264534 - local arm_arch="${CTARGET%%-*}" - # Only do this if arm_arch is armv* - if [[ ${arm_arch} == armv* ]] ; then - # Convert armv7{a,r,m} to armv7-{a,r,m} - [[ ${arm_arch} == armv7? ]] && arm_arch=${arm_arch/7/7-} - # Remove endian ('l' / 'eb') - [[ ${arm_arch} == *l ]] && arm_arch=${arm_arch%l} - [[ ${arm_arch} == *eb ]] && arm_arch=${arm_arch%eb} + arm) #264534 #414395 + local a arm_arch=${CTARGET%%-*} + # Remove trailing endian variations first: eb el be bl b l + for a in e{b,l} {b,l}e b l ; do + if [[ ${arm_arch} == *${a} ]] ; then + arm_arch=${arm_arch%${a}} + break + fi + done + # Convert armv7{a,r,m} to armv7-{a,r,m} + [[ ${arm_arch} == armv7? ]] && arm_arch=${arm_arch/7/7-} + # See if this is a valid --with-arch flag + if (srcdir=${S}/gcc target=${CTARGET} with_arch=${arm_arch}; + . "${srcdir}"/config.gcc) &>/dev/null + then confgcc+=" --with-arch=${arm_arch}" fi # Enable hardvfp - if [[ ${CTARGET##*-} == *eabi ]] && [[ $(tc-is-hardfloat) == yes ]] && \ - tc_version_is_at_least "4.5" ; then - confgcc+=" --with-float=hard" + if [[ ${CTARGET##*-} == *eabi* ]] && \ + [[ $(tc-is-hardfloat) == yes ]] && \ + tc_version_is_at_least "4.5" + then + confgcc+=" --with-float=hard" + # Follow the new arm hardfp distro standard by default + confgcc+=" --with-fpu=vfpv3-d16" fi ;; # Add --with-abi flags to set default ABI |