Gentoo Archives: gentoo-commits

From: "Ryan Hill (dirtyepic)" <dirtyepic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog flag-o-matic.eclass
Date: Sat, 01 Feb 2014 18:52:35
Message-Id: 20140201185232.6DDF72004C@flycatcher.gentoo.org
1 dirtyepic 14/02/01 18:52:32
2
3 Modified: ChangeLog flag-o-matic.eclass
4 Log:
5 Add -fdiagnostics* and ISA flags for 4.8 and 4.9.
6
7 Revision Changes Path
8 1.1134 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1134&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1134&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1133&r2=1.1134
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1133
18 retrieving revision 1.1134
19 diff -u -r1.1133 -r1.1134
20 --- ChangeLog 26 Jan 2014 10:59:07 -0000 1.1133
21 +++ ChangeLog 1 Feb 2014 18:52:32 -0000 1.1134
22 @@ -1,6 +1,9 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1133 2014/01/26 10:59:07 pinkbyte Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1134 2014/02/01 18:52:32 dirtyepic Exp $
27 +
28 + 01 Feb 2014; Ryan Hill <dirtyepic@g.o> flag-o-matic.eclass:
29 + Add -fdiagnostics* and ISA flags for 4.8 and 4.9.
30
31 26 Jan 2014; Sergey Popov <pinkbyte@g.o> myspell-r2.eclass:
32 Drop inheriting base eclass, wrt bug #497040
33
34
35
36 1.196 eclass/flag-o-matic.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-matic.eclass?rev=1.196&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-matic.eclass?rev=1.196&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/flag-o-matic.eclass?r1=1.195&r2=1.196
41
42 Index: flag-o-matic.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v
45 retrieving revision 1.195
46 retrieving revision 1.196
47 diff -u -r1.195 -r1.196
48 --- flag-o-matic.eclass 28 Dec 2013 00:25:53 -0000 1.195
49 +++ flag-o-matic.eclass 1 Feb 2014 18:52:32 -0000 1.196
50 @@ -1,6 +1,6 @@
51 -# Copyright 1999-2013 Gentoo Foundation
52 +# Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.195 2013/12/28 00:25:53 robbat2 Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.196 2014/02/01 18:52:32 dirtyepic Exp $
56
57 # @ECLASS: flag-o-matic.eclass
58 # @MAINTAINER:
59 @@ -30,6 +30,7 @@
60 ALLOWED_FLAGS+=" -fno-PIE -fno-pie -fno-unit-at-a-time"
61 ALLOWED_FLAGS+=" -g -g[0-9] -ggdb -ggdb[0-9] -gstabs -gstabs+"
62 ALLOWED_FLAGS+=" -fno-ident -fpermissive -frecord-gcc-switches"
63 + ALLOWED_FLAGS+=" -fdiagnostics*"
64 ALLOWED_FLAGS+=" -W* -w"
65
66 # allow a bunch of flags that negate features / control ABI
67 @@ -54,6 +55,10 @@
68 ALLOWED_FLAGS+=" -mno-fsgsbase -mno-rdrnd -mno-f16c -mno-bmi -mno-tbm"
69 # 4.7
70 ALLOWED_FLAGS+=" -mno-avx2 -mno-bmi2 -mno-fma -mno-lzcnt"
71 + # 4.8
72 + ALLOWED_FLAGS+="-mno-fxsr -mno-rtm -mno-xsave -mno-xsaveopt"
73 + # 4.9
74 + ALLOWED_FLAGS+="-mno-avx512cd -mno-avx512er -mno-avx512f -mno-avx512pf -mno-sha"
75
76 # CPPFLAGS and LDFLAGS
77 ALLOWED_FLAGS+=" -I* -L* -R* -Wl,*"