diff options
author | 2013-01-15 02:30:53 +0000 | |
---|---|---|
committer | 2013-01-15 02:30:53 +0000 | |
commit | 77a73d4684137bd9f5a7ae7d9e8eedd6e99dfc21 (patch) | |
tree | b7c138940c907d25ac531b569af44a1958ca734c /eclass | |
parent | Patchset 1.10. Backport patch to fix ICE on arm (bug #401561). (diff) | |
download | historical-77a73d4684137bd9f5a7ae7d9e8eedd6e99dfc21.tar.gz historical-77a73d4684137bd9f5a7ae7d9e8eedd6e99dfc21.tar.bz2 historical-77a73d4684137bd9f5a7ae7d9e8eedd6e99dfc21.zip |
Drop go support for 4.6 - broken by newer glibc versions and upstream recommends it not be used.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 6 | ||||
-rw-r--r-- | eclass/toolchain.eclass | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 1d8fb7c5a9cd..1c3dbf10e4bf 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.614 2013/01/13 22:35:28 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.615 2013/01/15 02:30:53 dirtyepic Exp $ + + 15 Jan 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass: + Drop go support for 4.6 - broken by newer glibc versions and upstream + recommends it not be used. 13 Jan 2013; Gilles Dartiguelongue <eva@gentoo.org> gnome2.eclass: Allow ebuild override of eclass generated econf. diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 14a1a353afcc..783c29fe5378 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.566 2012/12/29 06:45:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.567 2013/01/15 02:30:53 dirtyepic Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -115,7 +115,7 @@ if [[ ${PN} != "kgcc64" && ${PN} != gcc-* ]] ; then tc_version_is_at_least "4.3" && IUSE+=" fixed-point" tc_version_is_at_least "4.4" && IUSE+=" graphite" [[ ${GCC_BRANCH_VER} == 4.5 ]] && IUSE+=" lto" - tc_version_is_at_least "4.6" && IUSE+=" go" + tc_version_is_at_least "4.7" && IUSE+=" go" fi fi |