Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/files/
Date: Fri, 25 Dec 2020 13:41:36
Message-Id: 1608903665.342f2ec33ee8685a5b3f1349b73228acc0b369ff.asturm@gentoo
1 commit: 342f2ec33ee8685a5b3f1349b73228acc0b369ff
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Dec 12 22:09:51 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 13:41:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=342f2ec3
7
8 dev-util/boost-build: Drop patches obsolete after 1.72.0 cleanup
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 ...ost-build-1.71.0-add-none-feature-options.patch | 22 --
14 ...oost-build-1.71.0-no-implicit-march-flags.patch | 266 ---------------------
15 2 files changed, 288 deletions(-)
16
17 diff --git a/dev-util/boost-build/files/boost-build-1.71.0-add-none-feature-options.patch b/dev-util/boost-build/files/boost-build-1.71.0-add-none-feature-options.patch
18 deleted file mode 100644
19 index ddd1641d15c..00000000000
20 --- a/dev-util/boost-build/files/boost-build-1.71.0-add-none-feature-options.patch
21 +++ /dev/null
22 @@ -1,22 +0,0 @@
23 ---- a/tools/features/debug-feature.jam
24 -+++ b/tools/features/debug-feature.jam
25 -@@ -8,7 +8,7 @@
26 - import feature ;
27 -
28 - feature.feature debug-symbols
29 -- : on off
30 -+ : on off none
31 - : propagated ;
32 -
33 - feature.feature profiling
34 ---- a/tools/features/optimization-feature.jam
35 -+++ b/tools/features/optimization-feature.jam
36 -@@ -8,7 +8,7 @@
37 - import feature ;
38 -
39 - feature.feature optimization
40 -- : off speed space
41 -+ : off none speed space
42 - : propagated ;
43 -
44 - feature.feature inlining
45
46 diff --git a/dev-util/boost-build/files/boost-build-1.71.0-no-implicit-march-flags.patch b/dev-util/boost-build/files/boost-build-1.71.0-no-implicit-march-flags.patch
47 deleted file mode 100644
48 index cd184030dee..00000000000
49 --- a/dev-util/boost-build/files/boost-build-1.71.0-no-implicit-march-flags.patch
50 +++ /dev/null
51 @@ -1,266 +0,0 @@
52 -Prevent bjam from injecting what it thinks are great -march/-mcpu flags
53 -in order to optimize code for you. This breaks on 32-bit builds, because
54 --march=i686 will not work on an i486 CHOST.
55 -
56 -See also:
57 -https://bugs.gentoo.org/624616
58 -
59 ---- a/tools/gcc.jam
60 -+++ b/tools/gcc.jam
61 -@@ -1187,128 +1187,8 @@
62 - # x86 and compatible
63 - # The 'native' option appeared in gcc 4.2 so we cannot safely use it as default.
64 - # Use i686 instead for 32-bit.
65 --toolset.flags gcc OPTIONS <architecture>x86/<address-model>32/<instruction-set> : -march=i686 ;
66 --cpu-flags gcc OPTIONS : x86 : native : -march=native ;
67 --cpu-flags gcc OPTIONS : x86 : i486 : -march=i486 ;
68 --cpu-flags gcc OPTIONS : x86 : i586 : -march=i586 ;
69 --cpu-flags gcc OPTIONS : x86 : i686 : -march=i686 ;
70 --cpu-flags gcc OPTIONS : x86 : pentium : -march=pentium ;
71 --cpu-flags gcc OPTIONS : x86 : pentium-mmx : -march=pentium-mmx ;
72 --cpu-flags gcc OPTIONS : x86 : pentiumpro : -march=pentiumpro ;
73 --cpu-flags gcc OPTIONS : x86 : pentium2 : -march=pentium2 ;
74 --cpu-flags gcc OPTIONS : x86 : pentium3 : -march=pentium3 ;
75 --cpu-flags gcc OPTIONS : x86 : pentium3m : -march=pentium3m ;
76 --cpu-flags gcc OPTIONS : x86 : pentium-m : -march=pentium-m ;
77 --cpu-flags gcc OPTIONS : x86 : pentium4 : -march=pentium4 ;
78 --cpu-flags gcc OPTIONS : x86 : pentium4m : -march=pentium4m ;
79 --cpu-flags gcc OPTIONS : x86 : prescott : -march=prescott ;
80 --cpu-flags gcc OPTIONS : x86 : nocona : -march=nocona ;
81 --cpu-flags gcc OPTIONS : x86 : core2 : -march=core2 ;
82 --cpu-flags gcc OPTIONS : x86 : conroe : -march=core2 ;
83 --cpu-flags gcc OPTIONS : x86 : conroe-xe : -march=core2 ;
84 --cpu-flags gcc OPTIONS : x86 : conroe-l : -march=core2 ;
85 --cpu-flags gcc OPTIONS : x86 : allendale : -march=core2 ;
86 --cpu-flags gcc OPTIONS : x86 : wolfdale : -march=core2 -msse4.1 ;
87 --cpu-flags gcc OPTIONS : x86 : merom : -march=core2 ;
88 --cpu-flags gcc OPTIONS : x86 : merom-xe : -march=core2 ;
89 --cpu-flags gcc OPTIONS : x86 : kentsfield : -march=core2 ;
90 --cpu-flags gcc OPTIONS : x86 : kentsfield-xe : -march=core2 ;
91 --cpu-flags gcc OPTIONS : x86 : yorksfield : -march=core2 ;
92 --cpu-flags gcc OPTIONS : x86 : penryn : -march=core2 ;
93 --cpu-flags gcc OPTIONS : x86 : corei7 : -march=corei7 ;
94 --cpu-flags gcc OPTIONS : x86 : nehalem : -march=corei7 ;
95 --cpu-flags gcc OPTIONS : x86 : corei7-avx : -march=corei7-avx ;
96 --cpu-flags gcc OPTIONS : x86 : sandy-bridge : -march=corei7-avx ;
97 --cpu-flags gcc OPTIONS : x86 : core-avx-i : -march=core-avx-i ;
98 --cpu-flags gcc OPTIONS : x86 : ivy-bridge : -march=core-avx-i ;
99 --cpu-flags gcc OPTIONS : x86 : haswell : -march=core-avx-i -mavx2 -mfma -mbmi -mbmi2 -mlzcnt ;
100 --cpu-flags gcc OPTIONS : x86 : broadwell : -march=broadwell ;
101 --cpu-flags gcc OPTIONS : x86 : skylake : -march=skylake ;
102 --cpu-flags gcc OPTIONS : x86 : skylake-avx512 : -march=skylake-avx512 ;
103 --cpu-flags gcc OPTIONS : x86 : cannonlake : -march=skylake-avx512 -mavx512vbmi -mavx512ifma -msha ;
104 --cpu-flags gcc OPTIONS : x86 : icelake : -march=icelake ;
105 --cpu-flags gcc OPTIONS : x86 : k6 : -march=k6 ;
106 --cpu-flags gcc OPTIONS : x86 : k6-2 : -march=k6-2 ;
107 --cpu-flags gcc OPTIONS : x86 : k6-3 : -march=k6-3 ;
108 --cpu-flags gcc OPTIONS : x86 : athlon : -march=athlon ;
109 --cpu-flags gcc OPTIONS : x86 : athlon-tbird : -march=athlon-tbird ;
110 --cpu-flags gcc OPTIONS : x86 : athlon-4 : -march=athlon-4 ;
111 --cpu-flags gcc OPTIONS : x86 : athlon-xp : -march=athlon-xp ;
112 --cpu-flags gcc OPTIONS : x86 : athlon-mp : -march=athlon-mp ;
113 - ##
114 --cpu-flags gcc OPTIONS : x86 : k8 : -march=k8 ;
115 --cpu-flags gcc OPTIONS : x86 : opteron : -march=opteron ;
116 --cpu-flags gcc OPTIONS : x86 : athlon64 : -march=athlon64 ;
117 --cpu-flags gcc OPTIONS : x86 : athlon-fx : -march=athlon-fx ;
118 --cpu-flags gcc OPTIONS : x86 : k8-sse3 : -march=k8-sse3 ;
119 --cpu-flags gcc OPTIONS : x86 : opteron-sse3 : -march=opteron-sse3 ;
120 --cpu-flags gcc OPTIONS : x86 : athlon64-sse3 : -march=athlon64-sse3 ;
121 --cpu-flags gcc OPTIONS : x86 : amdfam10 : -march=amdfam10 ;
122 --cpu-flags gcc OPTIONS : x86 : barcelona : -march=barcelona ;
123 --cpu-flags gcc OPTIONS : x86 : bdver1 : -march=bdver1 ;
124 --cpu-flags gcc OPTIONS : x86 : bdver2 : -march=bdver2 ;
125 --cpu-flags gcc OPTIONS : x86 : bdver3 : -march=bdver3 ;
126 --cpu-flags gcc OPTIONS : x86 : bdver4 : -march=bdver4 ;
127 --cpu-flags gcc OPTIONS : x86 : btver1 : -march=btver1 ;
128 --cpu-flags gcc OPTIONS : x86 : btver2 : -march=btver2 ;
129 --cpu-flags gcc OPTIONS : x86 : znver1 : -march=znver1 ;
130 --cpu-flags gcc OPTIONS : x86 : winchip-c6 : -march=winchip-c6 ;
131 --cpu-flags gcc OPTIONS : x86 : winchip2 : -march=winchip2 ;
132 --cpu-flags gcc OPTIONS : x86 : c3 : -march=c3 ;
133 --cpu-flags gcc OPTIONS : x86 : c3-2 : -march=c3-2 ;
134 - ##
135 --cpu-flags gcc OPTIONS : x86 : atom : -march=atom ;
136 --# Sparc
137 --cpu-flags gcc OPTIONS : sparc : v7 : -mcpu=v7 : default ;
138 --cpu-flags gcc OPTIONS : sparc : cypress : -mcpu=cypress ;
139 --cpu-flags gcc OPTIONS : sparc : v8 : -mcpu=v8 ;
140 --cpu-flags gcc OPTIONS : sparc : supersparc : -mcpu=supersparc ;
141 --cpu-flags gcc OPTIONS : sparc : sparclite : -mcpu=sparclite ;
142 --cpu-flags gcc OPTIONS : sparc : hypersparc : -mcpu=hypersparc ;
143 --cpu-flags gcc OPTIONS : sparc : sparclite86x : -mcpu=sparclite86x ;
144 --cpu-flags gcc OPTIONS : sparc : f930 : -mcpu=f930 ;
145 --cpu-flags gcc OPTIONS : sparc : f934 : -mcpu=f934 ;
146 --cpu-flags gcc OPTIONS : sparc : sparclet : -mcpu=sparclet ;
147 --cpu-flags gcc OPTIONS : sparc : tsc701 : -mcpu=tsc701 ;
148 --cpu-flags gcc OPTIONS : sparc : v9 : -mcpu=v9 ;
149 --cpu-flags gcc OPTIONS : sparc : ultrasparc : -mcpu=ultrasparc ;
150 --cpu-flags gcc OPTIONS : sparc : ultrasparc3 : -mcpu=ultrasparc3 ;
151 - # RS/6000 & PowerPC
152 --cpu-flags gcc OPTIONS : power : 403 : -mcpu=403 ;
153 --cpu-flags gcc OPTIONS : power : 505 : -mcpu=505 ;
154 --cpu-flags gcc OPTIONS : power : 601 : -mcpu=601 ;
155 --cpu-flags gcc OPTIONS : power : 602 : -mcpu=602 ;
156 --cpu-flags gcc OPTIONS : power : 603 : -mcpu=603 ;
157 --cpu-flags gcc OPTIONS : power : 603e : -mcpu=603e ;
158 --cpu-flags gcc OPTIONS : power : 604 : -mcpu=604 ;
159 --cpu-flags gcc OPTIONS : power : 604e : -mcpu=604e ;
160 --cpu-flags gcc OPTIONS : power : 620 : -mcpu=620 ;
161 --cpu-flags gcc OPTIONS : power : 630 : -mcpu=630 ;
162 --cpu-flags gcc OPTIONS : power : 740 : -mcpu=740 ;
163 --cpu-flags gcc OPTIONS : power : 7400 : -mcpu=7400 ;
164 --cpu-flags gcc OPTIONS : power : 7450 : -mcpu=7450 ;
165 --cpu-flags gcc OPTIONS : power : 750 : -mcpu=750 ;
166 --cpu-flags gcc OPTIONS : power : 801 : -mcpu=801 ;
167 --cpu-flags gcc OPTIONS : power : 821 : -mcpu=821 ;
168 --cpu-flags gcc OPTIONS : power : 823 : -mcpu=823 ;
169 --cpu-flags gcc OPTIONS : power : 860 : -mcpu=860 ;
170 --cpu-flags gcc OPTIONS : power : 970 : -mcpu=970 ;
171 --cpu-flags gcc OPTIONS : power : 8540 : -mcpu=8540 ;
172 --cpu-flags gcc OPTIONS : power : power : -mcpu=power ;
173 --cpu-flags gcc OPTIONS : power : power2 : -mcpu=power2 ;
174 --cpu-flags gcc OPTIONS : power : power3 : -mcpu=power3 ;
175 --cpu-flags gcc OPTIONS : power : power4 : -mcpu=power4 ;
176 --cpu-flags gcc OPTIONS : power : power5 : -mcpu=power5 ;
177 --cpu-flags gcc OPTIONS : power : powerpc : -mcpu=powerpc ;
178 --cpu-flags gcc OPTIONS : power : powerpc64 : -mcpu=powerpc64 ;
179 --cpu-flags gcc OPTIONS : power : rios : -mcpu=rios ;
180 --cpu-flags gcc OPTIONS : power : rios1 : -mcpu=rios1 ;
181 --cpu-flags gcc OPTIONS : power : rios2 : -mcpu=rios2 ;
182 --cpu-flags gcc OPTIONS : power : rsc : -mcpu=rsc ;
183 --cpu-flags gcc OPTIONS : power : rs64a : -mcpu=rs64 ;
184 --cpu-flags gcc OPTIONS : s390x : z196 : -march=z196 ;
185 --cpu-flags gcc OPTIONS : s390x : zEC12 : -march=zEC12 ;
186 --cpu-flags gcc OPTIONS : s390x : z13 : -march=z13 ;
187 --cpu-flags gcc OPTIONS : s390x : z14 : -march=z14 ;
188 - # AIX variant of RS/6000 & PowerPC
189 - toolset.flags gcc AROPTIONS <address-model>64/<target-os>aix : "-X64" ;
190 ---- a/tools/gcc.py
191 -+++ b/tools/gcc.py
192 -@@ -745,125 +745,14 @@
193 - # x86 and compatible
194 - flags('gcc', 'OPTIONS', ['<architecture>x86/<address-model>32'], ['-m32'])
195 - flags('gcc', 'OPTIONS', ['<architecture>x86/<address-model>64'], ['-m64'])
196 --cpu_flags('gcc', 'OPTIONS', 'x86', 'native', ['-march=native'])
197 --cpu_flags('gcc', 'OPTIONS', 'x86', 'i486', ['-march=i486'])
198 --cpu_flags('gcc', 'OPTIONS', 'x86', 'i586', ['-march=i586'])
199 --cpu_flags('gcc', 'OPTIONS', 'x86', 'i686', ['-march=i686'], default=True)
200 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium', ['-march=pentium'])
201 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium-mmx', ['-march=pentium-mmx'])
202 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentiumpro', ['-march=pentiumpro'])
203 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium2', ['-march=pentium2'])
204 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium3', ['-march=pentium3'])
205 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium3m', ['-march=pentium3m'])
206 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium-m', ['-march=pentium-m'])
207 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium4', ['-march=pentium4'])
208 --cpu_flags('gcc', 'OPTIONS', 'x86', 'pentium4m', ['-march=pentium4m'])
209 --cpu_flags('gcc', 'OPTIONS', 'x86', 'prescott', ['-march=prescott'])
210 --cpu_flags('gcc', 'OPTIONS', 'x86', 'nocona', ['-march=nocona'])
211 --cpu_flags('gcc', 'OPTIONS', 'x86', 'core2', ['-march=core2'])
212 --cpu_flags('gcc', 'OPTIONS', 'x86', 'conroe', ['-march=core2'])
213 --cpu_flags('gcc', 'OPTIONS', 'x86', 'conroe-xe', ['-march=core2'])
214 --cpu_flags('gcc', 'OPTIONS', 'x86', 'conroe-l', ['-march=core2'])
215 --cpu_flags('gcc', 'OPTIONS', 'x86', 'allendale', ['-march=core2'])
216 --cpu_flags('gcc', 'OPTIONS', 'x86', 'wolfdale', ['-march=core2', '-msse4.1'])
217 --cpu_flags('gcc', 'OPTIONS', 'x86', 'merom', ['-march=core2'])
218 --cpu_flags('gcc', 'OPTIONS', 'x86', 'merom-xe', ['-march=core2'])
219 --cpu_flags('gcc', 'OPTIONS', 'x86', 'kentsfield', ['-march=core2'])
220 --cpu_flags('gcc', 'OPTIONS', 'x86', 'kentsfield-xe', ['-march=core2'])
221 --cpu_flags('gcc', 'OPTIONS', 'x86', 'yorksfield', ['-march=core2'])
222 --cpu_flags('gcc', 'OPTIONS', 'x86', 'penryn', ['-march=core2'])
223 --cpu_flags('gcc', 'OPTIONS', 'x86', 'corei7', ['-march=corei7'])
224 --cpu_flags('gcc', 'OPTIONS', 'x86', 'nehalem', ['-march=corei7'])
225 --cpu_flags('gcc', 'OPTIONS', 'x86', 'corei7-avx', ['-march=corei7-avx'])
226 --cpu_flags('gcc', 'OPTIONS', 'x86', 'sandy-bridge', ['-march=corei7-avx'])
227 --cpu_flags('gcc', 'OPTIONS', 'x86', 'core-avx-i', ['-march=core-avx-i'])
228 --cpu_flags('gcc', 'OPTIONS', 'x86', 'ivy-bridge', ['-march=core-avx-i'])
229 --cpu_flags('gcc', 'OPTIONS', 'x86', 'haswell', ['-march=core-avx-i', '-mavx2', '-mfma', '-mbmi', '-mbmi2', '-mlzcnt'])
230 --cpu_flags('gcc', 'OPTIONS', 'x86', 'k6', ['-march=k6'])
231 --cpu_flags('gcc', 'OPTIONS', 'x86', 'k6-2', ['-march=k6-2'])
232 --cpu_flags('gcc', 'OPTIONS', 'x86', 'k6-3', ['-march=k6-3'])
233 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon', ['-march=athlon'])
234 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon-tbird', ['-march=athlon-tbird'])
235 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon-4', ['-march=athlon-4'])
236 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon-xp', ['-march=athlon-xp'])
237 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon-mp', ['-march=athlon-mp'])
238 - ##
239 --cpu_flags('gcc', 'OPTIONS', 'x86', 'k8', ['-march=k8'])
240 --cpu_flags('gcc', 'OPTIONS', 'x86', 'opteron', ['-march=opteron'])
241 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon64', ['-march=athlon64'])
242 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon-fx', ['-march=athlon-fx'])
243 --cpu_flags('gcc', 'OPTIONS', 'x86', 'k8-sse3', ['-march=k8-sse3'])
244 --cpu_flags('gcc', 'OPTIONS', 'x86', 'opteron-sse3', ['-march=opteron-sse3'])
245 --cpu_flags('gcc', 'OPTIONS', 'x86', 'athlon64-sse3', ['-march=athlon64-sse3'])
246 --cpu_flags('gcc', 'OPTIONS', 'x86', 'amdfam10', ['-march=amdfam10'])
247 --cpu_flags('gcc', 'OPTIONS', 'x86', 'barcelona', ['-march=barcelona'])
248 --cpu_flags('gcc', 'OPTIONS', 'x86', 'bdver1', ['-march=bdver1'])
249 --cpu_flags('gcc', 'OPTIONS', 'x86', 'bdver2', ['-march=bdver2'])
250 --cpu_flags('gcc', 'OPTIONS', 'x86', 'bdver3', ['-march=bdver3'])
251 --cpu_flags('gcc', 'OPTIONS', 'x86', 'btver1', ['-march=btver1'])
252 --cpu_flags('gcc', 'OPTIONS', 'x86', 'btver2', ['-march=btver2'])
253 --cpu_flags('gcc', 'OPTIONS', 'x86', 'winchip-c6', ['-march=winchip-c6'])
254 --cpu_flags('gcc', 'OPTIONS', 'x86', 'winchip2', ['-march=winchip2'])
255 --cpu_flags('gcc', 'OPTIONS', 'x86', 'c3', ['-march=c3'])
256 --cpu_flags('gcc', 'OPTIONS', 'x86', 'c3-2', ['-march=c3-2'])
257 - ##
258 --cpu_flags('gcc', 'OPTIONS', 'x86', 'atom', ['-march=atom'])
259 - # Sparc
260 - flags('gcc', 'OPTIONS', ['<architecture>sparc/<address-model>32'], ['-m32'])
261 - flags('gcc', 'OPTIONS', ['<architecture>sparc/<address-model>64'], ['-m64'])
262 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'v7', ['-mcpu=v7'], default=True)
263 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'cypress', ['-mcpu=cypress'])
264 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'v8', ['-mcpu=v8'])
265 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'supersparc', ['-mcpu=supersparc'])
266 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'sparclite', ['-mcpu=sparclite'])
267 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'hypersparc', ['-mcpu=hypersparc'])
268 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'sparclite86x', ['-mcpu=sparclite86x'])
269 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'f930', ['-mcpu=f930'])
270 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'f934', ['-mcpu=f934'])
271 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'sparclet', ['-mcpu=sparclet'])
272 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'tsc701', ['-mcpu=tsc701'])
273 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'v9', ['-mcpu=v9'])
274 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'ultrasparc', ['-mcpu=ultrasparc'])
275 --cpu_flags('gcc', 'OPTIONS', 'sparc', 'ultrasparc3', ['-mcpu=ultrasparc3'])
276 - # RS/6000 & PowerPC
277 - flags('gcc', 'OPTIONS', ['<architecture>power/<address-model>32'], ['-m32'])
278 - flags('gcc', 'OPTIONS', ['<architecture>power/<address-model>64'], ['-m64'])
279 --cpu_flags('gcc', 'OPTIONS', 'power', '403', ['-mcpu=403'])
280 --cpu_flags('gcc', 'OPTIONS', 'power', '505', ['-mcpu=505'])
281 --cpu_flags('gcc', 'OPTIONS', 'power', '601', ['-mcpu=601'])
282 --cpu_flags('gcc', 'OPTIONS', 'power', '602', ['-mcpu=602'])
283 --cpu_flags('gcc', 'OPTIONS', 'power', '603', ['-mcpu=603'])
284 --cpu_flags('gcc', 'OPTIONS', 'power', '603e', ['-mcpu=603e'])
285 --cpu_flags('gcc', 'OPTIONS', 'power', '604', ['-mcpu=604'])
286 --cpu_flags('gcc', 'OPTIONS', 'power', '604e', ['-mcpu=604e'])
287 --cpu_flags('gcc', 'OPTIONS', 'power', '620', ['-mcpu=620'])
288 --cpu_flags('gcc', 'OPTIONS', 'power', '630', ['-mcpu=630'])
289 --cpu_flags('gcc', 'OPTIONS', 'power', '740', ['-mcpu=740'])
290 --cpu_flags('gcc', 'OPTIONS', 'power', '7400', ['-mcpu=7400'])
291 --cpu_flags('gcc', 'OPTIONS', 'power', '7450', ['-mcpu=7450'])
292 --cpu_flags('gcc', 'OPTIONS', 'power', '750', ['-mcpu=750'])
293 --cpu_flags('gcc', 'OPTIONS', 'power', '801', ['-mcpu=801'])
294 --cpu_flags('gcc', 'OPTIONS', 'power', '821', ['-mcpu=821'])
295 --cpu_flags('gcc', 'OPTIONS', 'power', '823', ['-mcpu=823'])
296 --cpu_flags('gcc', 'OPTIONS', 'power', '860', ['-mcpu=860'])
297 --cpu_flags('gcc', 'OPTIONS', 'power', '970', ['-mcpu=970'])
298 --cpu_flags('gcc', 'OPTIONS', 'power', '8540', ['-mcpu=8540'])
299 --cpu_flags('gcc', 'OPTIONS', 'power', 'power', ['-mcpu=power'])
300 --cpu_flags('gcc', 'OPTIONS', 'power', 'power2', ['-mcpu=power2'])
301 --cpu_flags('gcc', 'OPTIONS', 'power', 'power3', ['-mcpu=power3'])
302 --cpu_flags('gcc', 'OPTIONS', 'power', 'power4', ['-mcpu=power4'])
303 --cpu_flags('gcc', 'OPTIONS', 'power', 'power5', ['-mcpu=power5'])
304 --cpu_flags('gcc', 'OPTIONS', 'power', 'powerpc', ['-mcpu=powerpc'])
305 --cpu_flags('gcc', 'OPTIONS', 'power', 'powerpc64', ['-mcpu=powerpc64'])
306 --cpu_flags('gcc', 'OPTIONS', 'power', 'rios', ['-mcpu=rios'])
307 --cpu_flags('gcc', 'OPTIONS', 'power', 'rios1', ['-mcpu=rios1'])
308 --cpu_flags('gcc', 'OPTIONS', 'power', 'rios2', ['-mcpu=rios2'])
309 --cpu_flags('gcc', 'OPTIONS', 'power', 'rsc', ['-mcpu=rsc'])
310 --cpu_flags('gcc', 'OPTIONS', 'power', 'rs64a', ['-mcpu=rs64'])
311 --cpu_flags('gcc', 'OPTIONS', 's390x', 'z196', ['-march=z196'])
312 --cpu_flags('gcc', 'OPTIONS', 's390x', 'zEC12', ['-march=zEC12'])
313 --cpu_flags('gcc', 'OPTIONS', 's390x', 'z13', ['-march=z13'])
314 --cpu_flags('gcc', 'OPTIONS', 's390x', 'z14', ['-march=z14'])
315 - # AIX variant of RS/6000 & PowerPC
316 - flags('gcc', 'OPTIONS', ['<architecture>power/<address-model>32/<target-os>aix'], ['-maix32'])
317 - flags('gcc', 'OPTIONS', ['<architecture>power/<address-model>64/<target-os>aix'], ['-maix64'])