From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Rbclv-0007wC-JQ for garchives@archives.gentoo.org; Fri, 16 Dec 2011 18:44:43 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9AE521C189; Fri, 16 Dec 2011 18:44:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7DE5421C189 for ; Fri, 16 Dec 2011 18:44:36 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E250A1B4025 for ; Fri, 16 Dec 2011 18:44:35 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 559) id B8A4F2004B; Fri, 16 Dec 2011 18:44:34 +0000 (UTC) From: "Mike Frysinger (vapier)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, vapier@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: toolchain.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: toolchain.eclass X-VCS-Directories: eclass X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger Content-Type: text/plain; charset=utf8 Message-Id: <20111216184434.B8A4F2004B@flycatcher.gentoo.org> Date: Fri, 16 Dec 2011 18:44:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 98683383-9fde-44fa-a001-9e84192e4641 X-Archives-Hash: 7d763ad88ea64c7ab107a55970e4358f vapier 11/12/16 18:44:34 Modified: toolchain.eclass Log: --with-abi support for amd64 has not yet been merged into master #39482= 3 by Helmut Jarausch Revision Changes Path 1.514 eclass/toolchain.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.e= class?rev=3D1.514&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.e= class?rev=3D1.514&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.e= class?r1=3D1.513&r2=3D1.514 Index: toolchain.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v retrieving revision 1.513 retrieving revision 1.514 diff -u -r1.513 -r1.514 --- toolchain.eclass 15 Dec 2011 20:42:13 -0000 1.513 +++ toolchain.eclass 16 Dec 2011 18:44:34 -0000 1.514 @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.513 2011/= 12/15 20:42:13 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.514 2011/= 12/16 18:44:34 vapier Exp $ # # Maintainer: Toolchain Ninjas =20 @@ -964,10 +964,9 @@ confgcc+=3D" --with-abi=3D$(gcc-abi-map ${DEFAULT_ABI})" ;; amd64) - # drop the 4.6.2 stuff once 4.7 goes stable - if tc_version_is_at_least 4.7 || - ( tc_version_is_at_least 4.6.2 && has x32 $(get_all_abis) ) - then + # drop the older/ABI checks once this get's merged into some + # version of gcc upstream + if [[ ${PV} =3D=3D "4.6.2" ]] && has x32 $(get_all_abis) ; then confgcc+=3D" --with-abi=3D$(gcc-abi-map ${DEFAULT_ABI})" fi ;;