rhill 14/05/20 10:41:23 Modified: ChangeLog toolchain.eclass Log: Strip -mno-rtm and -mno-htm as libitm requires these for x86/x86_64 and ppc/s390 respectively if supported by the assembler (bug #506202).
Revision Changes Path 1.1259 eclass/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1259&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1259&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1258&r2=1.1259 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v retrieving revision 1.1258 retrieving revision 1.1259 diff -u -r1.1258 -r1.1259 --- ChangeLog 20 May 2014 07:39:28 -0000 1.1258 +++ ChangeLog 20 May 2014 10:41:23 -0000 1.1259 @@ -1,6 +1,10 @@ # ChangeLog for eclass directory # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1258 2014/05/20 07:39:28 rhill Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1259 2014/05/20 10:41:23 rhill Exp $ + + 20 May 2014; Ryan Hill <[email protected]> toolchain.eclass: + Strip -mno-rtm and -mno-htm as libitm requires these for x86/x86_64 and + ppc/s390 respectively if supported by the assembler (bug #506202). 20 May 2014; Ryan Hill <[email protected]> toolchain.eclass: Depend on virtual/libintl rather than sys-devel/gettext (bug #499774). 1.628 eclass/toolchain.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.628&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?rev=1.628&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/toolchain.eclass?r1=1.627&r2=1.628 Index: toolchain.eclass =================================================================== RCS file: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v retrieving revision 1.627 retrieving revision 1.628 diff -u -r1.627 -r1.628 --- toolchain.eclass 20 May 2014 07:39:28 -0000 1.627 +++ toolchain.eclass 20 May 2014 10:41:23 -0000 1.628 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.627 2014/05/20 07:39:28 rhill Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.628 2014/05/20 10:41:23 rhill Exp $ # Maintainer: Toolchain Ninjas <[email protected]> @@ -1340,7 +1340,8 @@ # dont want to funk ourselves filter-flags '-mabi*' -m31 -m32 -m64 - filter-flags '-frecord-gcc-switches' # 490738 + filter-flags -frecord-gcc-switches # 490738 + filter-flags -mno-rtm -mno-htm # 506202 if tc_version_is_between 3.2 3.4 ; then # XXX: this is so outdated it's barely useful, but it don't hurt...
