diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-03-17 06:34:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-17 06:34:54 +0000 |
commit | 8e78e0d67cba155e97815d903032a7467e241e68 (patch) | |
tree | 17c791612e82db9708b2ffcc35d72f109f7d7a6c /eclass | |
parent | Bump, fix llvm dep (diff) | |
download | historical-8e78e0d67cba155e97815d903032a7467e241e68.tar.gz historical-8e78e0d67cba155e97815d903032a7467e241e68.tar.bz2 historical-8e78e0d67cba155e97815d903032a7467e241e68.zip |
drop x32 support for gcc-4.7 #543578
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index d76fc9d48c57..9a24b854f321 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.656 2015/03/17 05:24:34 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.657 2015/03/17 06:34:54 vapier Exp $ # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1084,7 +1084,7 @@ toolchain_src_configure() { amd64) # drop the older/ABI checks once this get's merged into some # version of gcc upstream - if tc_version_is_at_least 4.7 && has x32 $(get_all_abis TARGET) ; then + if tc_version_is_at_least 4.8 && has x32 $(get_all_abis TARGET) ; then confgcc+=( --with-abi=$(gcc-abi-map ${TARGET_DEFAULT_ABI}) ) fi ;; @@ -1465,7 +1465,7 @@ gcc-multilib-configure() { if [[ -n ${list} ]] ; then case ${CTARGET} in x86_64*) - tc_version_is_at_least 4.7 && confgcc+=( --with-multilib-list=${list:1} ) + tc_version_is_at_least 4.8 && confgcc+=( --with-multilib-list=${list:1} ) ;; esac fi |