blob: 91ab53efd9edca21c02c5d8a9940de1e40b5298e [file] [log] [blame]
Andrew Geisslerc9f78652020-09-18 14:11:35 -05001From 8e1d30454afde37eaa3c593ec19d108cd5ed10d0 Mon Sep 17 00:00:00 2001
Brad Bishop977dc1a2019-02-06 16:01:43 -05002From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 18 Dec 2018 15:42:57 +0100
Wang Mingyu66b34c82020-05-23 02:23:08 +08004Subject: [PATCH] Don't set up arch/instruction-set flags, we do that
Andrew Geisslerc9f78652020-09-18 14:11:35 -05005
Wang Mingyu66b34c82020-05-23 02:23:08 +08006ourselves
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007
8Upstream-Status: Inappropriate
9Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Brad Bishop977dc1a2019-02-06 16:01:43 -050010Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Brad Bishop79641f22019-09-10 07:20:22 -040011
Brad Bishop6e60e8b2018-02-01 10:27:11 -050012---
Andrew Geisslerc9f78652020-09-18 14:11:35 -050013 tools/build/src/tools/gcc.jam | 139 ----------------------------------
14 1 file changed, 139 deletions(-)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015
16diff --git a/tools/build/src/tools/gcc.jam b/tools/build/src/tools/gcc.jam
Andrew Geisslerc9f78652020-09-18 14:11:35 -050017index ff3209f7b..70cbc39a5 100644
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018--- a/tools/build/src/tools/gcc.jam
19+++ b/tools/build/src/tools/gcc.jam
Andrew Geisslerc9f78652020-09-18 14:11:35 -050020@@ -1217,142 +1217,3 @@ local rule cpu-flags ( toolset variable : architecture : instruction-set + :
Brad Bishop6e60e8b2018-02-01 10:27:11 -050021 <architecture>$(architecture)/<instruction-set>$(instruction-set)
22 : $(values) ;
23 }
24-
25-
26-# Set architecture/instruction-set options.
27-#
28-# x86 and compatible
29-# The 'native' option appeared in gcc 4.2 so we cannot safely use it as default.
30-# Use i686 instead for 32-bit.
31-toolset.flags gcc OPTIONS <architecture>x86/<address-model>32/<instruction-set> : -march=i686 ;
32-cpu-flags gcc OPTIONS : x86 : native : -march=native ;
33-cpu-flags gcc OPTIONS : x86 : i486 : -march=i486 ;
34-cpu-flags gcc OPTIONS : x86 : i586 : -march=i586 ;
35-cpu-flags gcc OPTIONS : x86 : i686 : -march=i686 ;
36-cpu-flags gcc OPTIONS : x86 : pentium : -march=pentium ;
37-cpu-flags gcc OPTIONS : x86 : pentium-mmx : -march=pentium-mmx ;
38-cpu-flags gcc OPTIONS : x86 : pentiumpro : -march=pentiumpro ;
39-cpu-flags gcc OPTIONS : x86 : pentium2 : -march=pentium2 ;
40-cpu-flags gcc OPTIONS : x86 : pentium3 : -march=pentium3 ;
41-cpu-flags gcc OPTIONS : x86 : pentium3m : -march=pentium3m ;
42-cpu-flags gcc OPTIONS : x86 : pentium-m : -march=pentium-m ;
43-cpu-flags gcc OPTIONS : x86 : pentium4 : -march=pentium4 ;
44-cpu-flags gcc OPTIONS : x86 : pentium4m : -march=pentium4m ;
45-cpu-flags gcc OPTIONS : x86 : prescott : -march=prescott ;
46-cpu-flags gcc OPTIONS : x86 : nocona : -march=nocona ;
47-cpu-flags gcc OPTIONS : x86 : core2 : -march=core2 ;
48-cpu-flags gcc OPTIONS : x86 : conroe : -march=core2 ;
49-cpu-flags gcc OPTIONS : x86 : conroe-xe : -march=core2 ;
50-cpu-flags gcc OPTIONS : x86 : conroe-l : -march=core2 ;
51-cpu-flags gcc OPTIONS : x86 : allendale : -march=core2 ;
52-cpu-flags gcc OPTIONS : x86 : wolfdale : -march=core2 -msse4.1 ;
53-cpu-flags gcc OPTIONS : x86 : merom : -march=core2 ;
54-cpu-flags gcc OPTIONS : x86 : merom-xe : -march=core2 ;
55-cpu-flags gcc OPTIONS : x86 : kentsfield : -march=core2 ;
56-cpu-flags gcc OPTIONS : x86 : kentsfield-xe : -march=core2 ;
57-cpu-flags gcc OPTIONS : x86 : yorksfield : -march=core2 ;
58-cpu-flags gcc OPTIONS : x86 : penryn : -march=core2 ;
59-cpu-flags gcc OPTIONS : x86 : corei7 : -march=corei7 ;
60-cpu-flags gcc OPTIONS : x86 : nehalem : -march=corei7 ;
61-cpu-flags gcc OPTIONS : x86 : corei7-avx : -march=corei7-avx ;
62-cpu-flags gcc OPTIONS : x86 : sandy-bridge : -march=corei7-avx ;
63-cpu-flags gcc OPTIONS : x86 : core-avx-i : -march=core-avx-i ;
64-cpu-flags gcc OPTIONS : x86 : ivy-bridge : -march=core-avx-i ;
65-cpu-flags gcc OPTIONS : x86 : haswell : -march=core-avx-i -mavx2 -mfma -mbmi -mbmi2 -mlzcnt ;
Brad Bishop316dfdd2018-06-25 12:45:53 -040066-cpu-flags gcc OPTIONS : x86 : broadwell : -march=broadwell ;
67-cpu-flags gcc OPTIONS : x86 : skylake : -march=skylake ;
68-cpu-flags gcc OPTIONS : x86 : skylake-avx512 : -march=skylake-avx512 ;
69-cpu-flags gcc OPTIONS : x86 : cannonlake : -march=skylake-avx512 -mavx512vbmi -mavx512ifma -msha ;
Andrew Geisslerc9f78652020-09-18 14:11:35 -050070-cpu-flags gcc OPTIONS : x86 : icelake-client : -march=icelake-client ;
71-cpu-flags gcc OPTIONS : x86 : icelake-server : -march=icelake-server ;
72-cpu-flags gcc OPTIONS : x86 : cascadelake : -march=skylake-avx512 -mavx512vnni ;
73-cpu-flags gcc OPTIONS : x86 : cooperlake : -march=cooperlake ;
74-cpu-flags gcc OPTIONS : x86 : tigerlake : -march=tigerlake ;
Brad Bishop6e60e8b2018-02-01 10:27:11 -050075-cpu-flags gcc OPTIONS : x86 : k6 : -march=k6 ;
76-cpu-flags gcc OPTIONS : x86 : k6-2 : -march=k6-2 ;
77-cpu-flags gcc OPTIONS : x86 : k6-3 : -march=k6-3 ;
78-cpu-flags gcc OPTIONS : x86 : athlon : -march=athlon ;
79-cpu-flags gcc OPTIONS : x86 : athlon-tbird : -march=athlon-tbird ;
80-cpu-flags gcc OPTIONS : x86 : athlon-4 : -march=athlon-4 ;
81-cpu-flags gcc OPTIONS : x86 : athlon-xp : -march=athlon-xp ;
82-cpu-flags gcc OPTIONS : x86 : athlon-mp : -march=athlon-mp ;
83-##
84-cpu-flags gcc OPTIONS : x86 : k8 : -march=k8 ;
85-cpu-flags gcc OPTIONS : x86 : opteron : -march=opteron ;
86-cpu-flags gcc OPTIONS : x86 : athlon64 : -march=athlon64 ;
87-cpu-flags gcc OPTIONS : x86 : athlon-fx : -march=athlon-fx ;
88-cpu-flags gcc OPTIONS : x86 : k8-sse3 : -march=k8-sse3 ;
89-cpu-flags gcc OPTIONS : x86 : opteron-sse3 : -march=opteron-sse3 ;
90-cpu-flags gcc OPTIONS : x86 : athlon64-sse3 : -march=athlon64-sse3 ;
91-cpu-flags gcc OPTIONS : x86 : amdfam10 : -march=amdfam10 ;
92-cpu-flags gcc OPTIONS : x86 : barcelona : -march=barcelona ;
93-cpu-flags gcc OPTIONS : x86 : bdver1 : -march=bdver1 ;
94-cpu-flags gcc OPTIONS : x86 : bdver2 : -march=bdver2 ;
95-cpu-flags gcc OPTIONS : x86 : bdver3 : -march=bdver3 ;
Brad Bishop316dfdd2018-06-25 12:45:53 -040096-cpu-flags gcc OPTIONS : x86 : bdver4 : -march=bdver4 ;
Brad Bishop6e60e8b2018-02-01 10:27:11 -050097-cpu-flags gcc OPTIONS : x86 : btver1 : -march=btver1 ;
98-cpu-flags gcc OPTIONS : x86 : btver2 : -march=btver2 ;
Brad Bishop316dfdd2018-06-25 12:45:53 -040099-cpu-flags gcc OPTIONS : x86 : znver1 : -march=znver1 ;
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500100-cpu-flags gcc OPTIONS : x86 : znver2 : -march=znver2 ;
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500101-cpu-flags gcc OPTIONS : x86 : winchip-c6 : -march=winchip-c6 ;
102-cpu-flags gcc OPTIONS : x86 : winchip2 : -march=winchip2 ;
103-cpu-flags gcc OPTIONS : x86 : c3 : -march=c3 ;
104-cpu-flags gcc OPTIONS : x86 : c3-2 : -march=c3-2 ;
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500105-cpu-flags gcc OPTIONS : x86 : c7 : -march=c7 ;
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500106-##
107-cpu-flags gcc OPTIONS : x86 : atom : -march=atom ;
108-# Sparc
109-cpu-flags gcc OPTIONS : sparc : v7 : -mcpu=v7 : default ;
110-cpu-flags gcc OPTIONS : sparc : cypress : -mcpu=cypress ;
111-cpu-flags gcc OPTIONS : sparc : v8 : -mcpu=v8 ;
112-cpu-flags gcc OPTIONS : sparc : supersparc : -mcpu=supersparc ;
113-cpu-flags gcc OPTIONS : sparc : sparclite : -mcpu=sparclite ;
114-cpu-flags gcc OPTIONS : sparc : hypersparc : -mcpu=hypersparc ;
115-cpu-flags gcc OPTIONS : sparc : sparclite86x : -mcpu=sparclite86x ;
116-cpu-flags gcc OPTIONS : sparc : f930 : -mcpu=f930 ;
117-cpu-flags gcc OPTIONS : sparc : f934 : -mcpu=f934 ;
118-cpu-flags gcc OPTIONS : sparc : sparclet : -mcpu=sparclet ;
119-cpu-flags gcc OPTIONS : sparc : tsc701 : -mcpu=tsc701 ;
120-cpu-flags gcc OPTIONS : sparc : v9 : -mcpu=v9 ;
121-cpu-flags gcc OPTIONS : sparc : ultrasparc : -mcpu=ultrasparc ;
122-cpu-flags gcc OPTIONS : sparc : ultrasparc3 : -mcpu=ultrasparc3 ;
123-# RS/6000 & PowerPC
124-cpu-flags gcc OPTIONS : power : 403 : -mcpu=403 ;
125-cpu-flags gcc OPTIONS : power : 505 : -mcpu=505 ;
126-cpu-flags gcc OPTIONS : power : 601 : -mcpu=601 ;
127-cpu-flags gcc OPTIONS : power : 602 : -mcpu=602 ;
128-cpu-flags gcc OPTIONS : power : 603 : -mcpu=603 ;
129-cpu-flags gcc OPTIONS : power : 603e : -mcpu=603e ;
130-cpu-flags gcc OPTIONS : power : 604 : -mcpu=604 ;
131-cpu-flags gcc OPTIONS : power : 604e : -mcpu=604e ;
132-cpu-flags gcc OPTIONS : power : 620 : -mcpu=620 ;
133-cpu-flags gcc OPTIONS : power : 630 : -mcpu=630 ;
134-cpu-flags gcc OPTIONS : power : 740 : -mcpu=740 ;
135-cpu-flags gcc OPTIONS : power : 7400 : -mcpu=7400 ;
136-cpu-flags gcc OPTIONS : power : 7450 : -mcpu=7450 ;
137-cpu-flags gcc OPTIONS : power : 750 : -mcpu=750 ;
138-cpu-flags gcc OPTIONS : power : 801 : -mcpu=801 ;
139-cpu-flags gcc OPTIONS : power : 821 : -mcpu=821 ;
140-cpu-flags gcc OPTIONS : power : 823 : -mcpu=823 ;
141-cpu-flags gcc OPTIONS : power : 860 : -mcpu=860 ;
142-cpu-flags gcc OPTIONS : power : 970 : -mcpu=970 ;
143-cpu-flags gcc OPTIONS : power : 8540 : -mcpu=8540 ;
144-cpu-flags gcc OPTIONS : power : power : -mcpu=power ;
145-cpu-flags gcc OPTIONS : power : power2 : -mcpu=power2 ;
146-cpu-flags gcc OPTIONS : power : power3 : -mcpu=power3 ;
147-cpu-flags gcc OPTIONS : power : power4 : -mcpu=power4 ;
148-cpu-flags gcc OPTIONS : power : power5 : -mcpu=power5 ;
149-cpu-flags gcc OPTIONS : power : powerpc : -mcpu=powerpc ;
150-cpu-flags gcc OPTIONS : power : powerpc64 : -mcpu=powerpc64 ;
151-cpu-flags gcc OPTIONS : power : rios : -mcpu=rios ;
152-cpu-flags gcc OPTIONS : power : rios1 : -mcpu=rios1 ;
153-cpu-flags gcc OPTIONS : power : rios2 : -mcpu=rios2 ;
154-cpu-flags gcc OPTIONS : power : rsc : -mcpu=rsc ;
155-cpu-flags gcc OPTIONS : power : rs64a : -mcpu=rs64 ;
Brad Bishop79641f22019-09-10 07:20:22 -0400156-cpu-flags gcc OPTIONS : s390x : z196 : -march=z196 ;
157-cpu-flags gcc OPTIONS : s390x : zEC12 : -march=zEC12 ;
158-cpu-flags gcc OPTIONS : s390x : z13 : -march=z13 ;
159-cpu-flags gcc OPTIONS : s390x : z14 : -march=z14 ;
Wang Mingyu66b34c82020-05-23 02:23:08 +0800160-cpu-flags gcc OPTIONS : s390x : z15 : -march=z15 ;
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500161-# AIX variant of RS/6000 & PowerPC
162-toolset.flags gcc AROPTIONS <address-model>64/<target-os>aix : "-X64" ;