diff options
author | 2013-11-25 03:11:57 +0000 | |
---|---|---|
committer | 2013-11-25 03:11:57 +0000 | |
commit | 9cf475dced97b8b80cc6a1fbb56ec4341069dcf2 (patch) | |
tree | c22f7017496ca2f063803eb46bb0f20937fcfbe5 /eclass | |
parent | Updates (and a patch) for texinfo borkage. (diff) | |
download | gentoo-2-9cf475dced97b8b80cc6a1fbb56ec4341069dcf2.tar.gz gentoo-2-9cf475dced97b8b80cc6a1fbb56ec4341069dcf2.tar.bz2 gentoo-2-9cf475dced97b8b80cc6a1fbb56ec4341069dcf2.zip |
Prevent comparison failures due to -frecord-gcc-switches (bug #490738).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/toolchain.eclass | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 778e3da81a61..7bc3b83d4c87 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1068 2013/11/25 02:49:47 nerdboy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1069 2013/11/25 03:11:57 dirtyepic Exp $ + + 25 Nov 2013; Ryan Hill <dirtyepic@gentoo.org> toolchain.eclass: + Prevent comparison failures due to -frecord-gcc-switches (bug #490738). 25 Nov 2013; Steve Arnold <nerdboy@gentoo.org> gnatbuild.eclass: Updates for handling texinfo breakage/version stuff (see bug #483192). diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 3f7955bdcce5..9686db0c2643 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # 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.605 2013/11/09 10:05:12 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.606 2013/11/25 03:11:57 dirtyepic Exp $ # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -1395,6 +1395,8 @@ gcc_do_filter_flags() { # dont want to funk ourselves filter-flags '-mabi*' -m31 -m32 -m64 + filter-flags '-frecord-gcc-switches' # 490738 + case ${GCC_BRANCH_VER} in 3.2|3.3) replace-cpu-flags k8 athlon64 opteron x86-64 |