forked from intel/clDNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeCompilerLinkerOpts.txt
390 lines (347 loc) · 15.3 KB
/
CMakeCompilerLinkerOpts.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# Copyright (c) 2016 Intel Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# =============================== Compiler options (abstract configuration) ============================
if(CMAKE_C_COMPILER_ID MATCHES "^Intel$")
set(CMAKE_COMPILER_IS_INTEL ON)
else()
set(CMAKE_COMPILER_IS_INTEL OFF)
endif()
if(MSVC)
if(CMAKE_COMPILER_IS_INTEL)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "${CLDNN__MIN_COMPILER_VERSION__ICC}")
message(FATAL_ERROR "[clDNN] required version of Intel C++ compiler is ${CLDNN__MIN_COMPILER_VERSION__ICC}. Please update compiler.")
endif()
else()
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "${CLDNN__MIN_COMPILER_VERSION__MSVC}")
message(FATAL_ERROR "[clDNN] Minimum required version of Microsoft Visual C++ compiler is ${CLDNN__MIN_COMPILER_VERSION__MSVC}. Please update compiler.")
endif()
endif()
CHECK_CXX_COMPILER_FLAG("-std=c++14" CLDNN__COMPILER_SUPPORTS_CXX14)
if(NOT CLDNN__COMPILER_SUPPORTS_CXX14)
message(STATUS "[clDNN] Compiler does not support C++14. Please update compiler.")
endif()
intel_flag_register_settings(
CompilerOptions
GROUP NAME CallingConvention "/G[drzv]"
GROUP NAME CompileAs "/T[CP]"
GROUP NAME DebugInfoFormat "/Z[7iI]"
GROUP NAME Exceptions "/EHa" "/EHsc?"
GROUP NAME FaviorSizeSpeed "/O[st]"
GROUP NAME Optimization "/O[d12xist]"
GROUP NAME RuntimeLibrary "/M[TD]d?"
GROUP NAME Rtti "/GR-?"
GROUP NAME TreatWarnAsError "/WX-?"
GROUP NAME DisableExtensions "/Za"
GROUP NAME WarnLevels "/W[0-4]"
ALIAS CallingConvCdecl "/Gd"
ALIAS CallingConvFastcall "/Gr"
ALIAS CallingConvStdcall "/Gz"
ALIAS CallingConvVectorcall "/Gv"
ALIAS CompileAsC "/TC"
ALIAS CompileAsCpp "/TP"
ALIAS CompileAsDefault CompileAs REMOVE_GROUP
ALIAS DebugInfoDisabled DebugInfoFormat REMOVE_GROUP
ALIAS DebugInfoProgramDatabase "/Zi"
ALIAS ExceptionsDisabled Exceptions REMOVE_GROUP
ALIAS ExceptionsEnabled "/EHsc"
ALIAS FaviorSize "/Os"
ALIAS FaviorSpeed "/Ot"
ALIAS MultiProcessorCompilation "/MP"
ALIAS OptimizeDisabled "/Od"
ALIAS OptimizeSize "/O2" "/Oi" "/Os"
ALIAS OptimizeSpeed "/O2"
ALIAS OptimizeFull "/Ox"
ALIAS RtMultiThreadedStatic "/MT"
ALIAS RtMultiThreadedShared "/MD"
ALIAS RtMultiThreadedStaticDebug "/MTd"
ALIAS RtMultiThreadedSharedDebug "/MDd"
ALIAS RttiDisabled "/GR-"
ALIAS RttiEnabled "/GR"
ALIAS TreatWarnAsErrorDisabled "/WX-"
ALIAS TreatWarnAsErrorEnabled "/WX"
ALIAS WarnLevel0 "/W0"
ALIAS WarnLevel1 "/W1"
ALIAS WarnLevel2 "/W2"
ALIAS WarnLevel3 "/W3"
ALIAS WarnLevel4 "/W4"
ALIAS ExtensionsDisabled "/Za"
ALIAS ExtensionsEnabled DisableExtensions REMOVE_GROUP
ALIAS StandardCxx11
ALIAS StandardCxx14
ALIAS StandardC99
ALIAS StandardNone
ALIAS FastMath
ALIAS NoFastMath
ALIAS DeadCodeEliminate
ALIAS DeadCodePreserve
ALIAS StackProtector
)
elseif(CMAKE_COMPILER_IS_INTEL)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "${CLDNN__MIN_COMPILER_VERSION__ICC}")
message(FATAL_ERROR "[clDNN] required version of Intel C++ compiler is 17.0. Please update compiler.")
endif()
CHECK_CXX_COMPILER_FLAG("-std=c++14" CLDNN__COMPILER_SUPPORTS_CXX14)
if(NOT CLDNN__COMPILER_SUPPORTS_CXX14)
message(STATUS "[clDNN] Compiler does not support C++14. Please update compiler.")
endif()
intel_flag_register_settings(
CompilerOptions
GROUP NAME DebugInfoFormat "-g[0-3]?"
GROUP NAME Exceptions "-f(no-)?non-call-exceptions"
GROUP NAME Optimization "-O[0-3sg]?"
GROUP NAME Rtti "-f(no-)?rtti"
GROUP NAME TreatWarnAsError "-Werror|-pedantic-errors"
GROUP NAME Standard "-std=[^ ]+"
GROUP NAME WarnLevels "-W(all|extra|pedantic)|-w|-pedantic"
GROUP NAME FastMathOpts "-f(no-)?fast-math"
ALIAS CallingConvCdecl
ALIAS CallingConvFastcall
ALIAS CallingConvStdcall
ALIAS CallingConvVectorcall
ALIAS CompileAsC
ALIAS CompileAsCpp
ALIAS CompileAsDefault
ALIAS DebugInfoDisabled "-g0"
ALIAS DebugInfoProgramDatabase "-g"
ALIAS ExceptionsDisabled "-fno-non-call-exceptions"
ALIAS ExceptionsEnabled "-fnon-call-exceptions"
ALIAS FaviorSize "-Os"
ALIAS FaviorSpeed "-O3"
ALIAS MultiProcessorCompilation
ALIAS OptimizeDisabled "-O0"
ALIAS OptimizeSize "-Os"
ALIAS OptimizeSpeed "-O2"
ALIAS OptimizeFull "-03"
ALIAS RtMultiThreadedStatic
ALIAS RtMultiThreadedShared
ALIAS RtMultiThreadedStaticDebug
ALIAS RtMultiThreadedSharedDebug
ALIAS RttiDisabled "-fno-rtti"
ALIAS RttiEnabled "-frtti"
ALIAS TreatWarnAsErrorDisabled TreatWarnAsError REMOVE_GROUP
ALIAS TreatWarnAsErrorEnabled "-Werror" "-pedantic-errors"
ALIAS WarnLevel0 "-w"
ALIAS WarnLevel1 WarnLevels REMOVE_GROUP
ALIAS WarnLevel2 "-Wall"
ALIAS WarnLevel3 "-Wall" "-pedantic"
ALIAS WarnLevel4 "-Wall" "-Wextra" "-pedantic"
ALIAS ExtensionsDisabled
ALIAS ExtensionsEnabled
ALIAS StandardCxx11 "-std=c++11"
ALIAS StandardCxx14 "-std=c++14"
ALIAS StandardC99 "-std=c99"
ALIAS StandardNone Standard REMOVE_GROUP
ALIAS FastMath
ALIAS NoFastMath FastMathOpts REMOVE_GROUP
ALIAS DeadCodeEliminate
ALIAS DeadCodePreserve
ALIAS StackProtector
)
if(CLDNN__COMPILE_LINK_ALLOW_UNSAFE_SIZE_OPT)
intel_flag_register_settings(
CompilerOptions
GROUP NAME EmitDataSec "-fdata-sections"
GROUP NAME EmitFuncSec "-ffunction-sections"
ALIAS DeadCodeEliminate "-fdata-sections" "-ffunction-sections"
ALIAS DeadCodePreserve EmitDataSec EmitFuncSec REMOVE_GROUP
)
endif()
elseif(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "${CLDNN__MIN_COMPILER_VERSION__GCC}")
message(FATAL_ERROR "[clDNN] Minimum required version of GCC/G++ compiler is ${CLDNN__MIN_COMPILER_VERSION__GCC}. Please update compiler.")
endif()
CHECK_CXX_COMPILER_FLAG("-std=c++14" CLDNN__COMPILER_SUPPORTS_CXX14)
if(NOT CLDNN__COMPILER_SUPPORTS_CXX14)
message(STATUS "[clDNN] Compiler does not support C++14. Please update compiler.")
endif()
intel_flag_register_settings(
CompilerOptions
GROUP NAME DebugInfoFormat "-g[0-3]?"
GROUP NAME Exceptions "-f(no-)?exceptions"
GROUP NAME Optimization "-O[0-3sg]?"
GROUP NAME Rtti "-f(no-)?rtti"
GROUP NAME TreatWarnAsError "-Werror|-pedantic-errors"
GROUP NAME Standard "-std=[^ ]+"
GROUP NAME WarnLevels "-W(all|extra|pedantic)|-w|-pedantic"
GROUP NAME FastMathOpts "-f(no-)?fast-math"
ALIAS CallingConvCdecl
ALIAS CallingConvFastcall
ALIAS CallingConvStdcall
ALIAS CallingConvVectorcall
ALIAS CompileAsC
ALIAS CompileAsCpp
ALIAS CompileAsDefault
ALIAS DebugInfoDisabled "-g0"
ALIAS DebugInfoProgramDatabase "-g"
ALIAS ExceptionsDisabled "-fno-exceptions"
ALIAS ExceptionsEnabled "-fexceptions"
ALIAS FaviorSize "-Os"
ALIAS FaviorSpeed "-O3"
ALIAS MultiProcessorCompilation
ALIAS OptimizeDisabled "-O0"
ALIAS OptimizeSize "-Os"
ALIAS OptimizeSpeed "-O2"
ALIAS OptimizeFull "-03"
ALIAS RtMultiThreadedStatic
ALIAS RtMultiThreadedShared
ALIAS RtMultiThreadedStaticDebug
ALIAS RtMultiThreadedSharedDebug
ALIAS RttiDisabled "-fno-rtti"
ALIAS RttiEnabled "-frtti"
ALIAS TreatWarnAsErrorDisabled TreatWarnAsError REMOVE_GROUP
ALIAS TreatWarnAsErrorEnabled "-Werror" "-pedantic-errors"
ALIAS WarnLevel0 "-w"
ALIAS WarnLevel1 WarnLevels REMOVE_GROUP
ALIAS WarnLevel2 "-Wall"
ALIAS WarnLevel3 "-Wall" "-pedantic"
ALIAS WarnLevel4 "-Wall" "-Wextra" "-pedantic"
ALIAS ExtensionsDisabled
ALIAS ExtensionsEnabled
ALIAS StandardCxx11 "-std=c++11"
ALIAS StandardCxx14 "-std=c++14"
ALIAS StandardC99 "-std=c99"
ALIAS StandardNone Standard REMOVE_GROUP
ALIAS FastMath "-ffast-math"
ALIAS NoFastMath FastMathOpts REMOVE_GROUP
ALIAS DeadCodeEliminate
ALIAS DeadCodePreserve
)
if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9")
intel_flag_register_settings(
CompilerOptions
ALIAS StackProtector "-fstack-protector"
)
else()
intel_flag_register_settings(
CompilerOptions
ALIAS StackProtector "-fstack-protector-strong"
)
endif()
if(CLDNN__COMPILE_LINK_ALLOW_UNSAFE_SIZE_OPT)
intel_flag_register_settings(
CompilerOptions
GROUP NAME EmitDataSec "-fdata-sections"
GROUP NAME EmitFuncSec "-ffunction-sections"
ALIAS DeadCodeEliminate "-fdata-sections" "-ffunction-sections"
ALIAS DeadCodePreserve EmitDataSec EmitFuncSec REMOVE_GROUP
)
endif()
elseif((CMAKE_C_COMPILER_ID MATCHES "^Clang$") OR (CMAKE_CXX_COMPILER_ID MATCHES "^Clang$"))
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "${CLDNN__MIN_COMPILER_VERSION__CLANG}")
message(FATAL_ERROR "[clDNN] Minimum required version of clang compiler is ${CLDNN__MIN_COMPILER_VERSION__CLANG}. Please update compiler.")
endif()
CHECK_CXX_COMPILER_FLAG("-std=c++14" CLDNN__COMPILER_SUPPORTS_CXX14)
if(NOT CLDNN__COMPILER_SUPPORTS_CXX14)
message(STATUS "[clDNN] Compiler does not support C++14. Please update compiler.")
endif()
intel_flag_register_settings(
CompilerOptions
GROUP NAME DebugInfoFormat "-g(dwardf-[2-4]?)?"
GROUP NAME Exceptions "-f(no-)?exceptions"
GROUP NAME Optimization "-O([0-3]?|fast|s|z)?"
GROUP NAME Rtti "-f(no-)?rtti"
GROUP NAME TreatWarnAsError "-Werror"
GROUP NAME Standard "-std=[^ ]+"
GROUP NAME WarnLevels "-W(all|extra|pedantic)|-w|-pedantic"
GROUP NAME FastMathOpts "-f(no-)?fast-math"
ALIAS CallingConvCdecl
ALIAS CallingConvFastcall
ALIAS CallingConvStdcall
ALIAS CallingConvVectorcall
ALIAS CompileAsC
ALIAS CompileAsCpp
ALIAS CompileAsDefault
ALIAS DebugInfoDisabled DebugInfoFormat REMOVE_GROUP
ALIAS DebugInfoProgramDatabase "-g"
ALIAS ExceptionsDisabled Exceptions REMOVE_GROUP
ALIAS ExceptionsEnabled "-fexceptions"
ALIAS FaviorSize "-Os"
ALIAS FaviorSpeed "-O3"
ALIAS MultiProcessorCompilation
ALIAS OptimizeDisabled "-O0"
ALIAS OptimizeSize "-Os"
ALIAS OptimizeSpeed "-O2"
ALIAS OptimizeFull "-03"
ALIAS RtMultiThreadedStatic
ALIAS RtMultiThreadedShared
ALIAS RtMultiThreadedStaticDebug
ALIAS RtMultiThreadedSharedDebug
ALIAS RttiDisabled "-fno-rtti"
ALIAS RttiEnabled Rtti REMOVE_GROUP
ALIAS TreatWarnAsErrorDisabled TreatWarnAsError REMOVE_GROUP
ALIAS TreatWarnAsErrorEnabled "-Werror"
ALIAS WarnLevel0 "-w"
ALIAS WarnLevel1 WarnLevels REMOVE_GROUP
ALIAS WarnLevel2 "-Wall"
ALIAS WarnLevel3 "-Wall" "-pedantic"
ALIAS WarnLevel4 "-Wall" "-Wextra" "-pedantic"
ALIAS ExtensionsDisabled
ALIAS ExtensionsEnabled
ALIAS StandardCxx11 "-std=c++11"
ALIAS StandardCxx14 "-std=c++14"
ALIAS StandardC99 "-std=c99"
ALIAS StandardNone Standard REMOVE_GROUP
ALIAS FastMath "-ffast-math"
ALIAS NoFastMath FastMathOpts REMOVE_GROUP
ALIAS DeadCodeEliminate
ALIAS DeadCodePreserve
ALIAS StackProtector
)
else()
message(FATAL_ERROR "[clDNN] Unknown compiler. Please define support for it or use different compiler.")
endif()
# =============================== Linker options (abstract configuration) ==============================
if(MSVC)
intel_flag_register_settings(
LinkerOptions
GROUP NAME DebugInfo "/[dD][eE][bB][uU][gG]"
GROUP NAME DeadCode "/[oO][pP][tT]:([nN][oO])?[rR][eE][fF]"
GROUP NAME IdenticalCodeData "/[oO][pP][tT]:([nN][oO])?[iI][cC][fF](=[0-9]+)?"
GROUP NAME Incremental "/[iI][nN][cC][rR][eE][mM][eE][nN][tT][aA][lL](:[nN][oO])?"
ALIAS DebugInfoDisabled DebugInfo REMOVE_GROUP
ALIAS DebugInfoProgramDatabase "/DEBUG"
ALIAS DeadCodeEliminate "/OPT:REF"
ALIAS DeadCodePreserve "/OPT:NOREF"
ALIAS IdenticalCodeDataFold "/OPT:ICF"
ALIAS IdenticalCodeDataNoFold "/OPT:NOICF"
ALIAS IncrementalEnabled "/INCREMENTAL"
ALIAS IncrementalDisabled "/INCREMENTAL:NO"
)
else()
intel_flag_register_settings(
LinkerOptions
ALIAS DebugInfoDisabled
ALIAS DebugInfoProgramDatabase
ALIAS DeadCodeEliminate
ALIAS DeadCodePreserve
ALIAS IdenticalCodeDataFold
ALIAS IdenticalCodeDataNoFold
ALIAS IncrementalEnabled
ALIAS IncrementalDisabled
)
if(CLDNN__COMPILE_LINK_ALLOW_UNSAFE_SIZE_OPT)
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
intel_flag_register_settings(
LinkerOptions
GROUP NAME GcSections "-Wl,--gc-sections"
ALIAS DeadCodeEliminate "-Wl,--gc-sections"
ALIAS DeadCodePreserve GcSections REMOVE_GROUP
)
elseif((CMAKE_C_COMPILER_ID MATCHES "^Clang$") OR (CMAKE_CXX_COMPILER_ID MATCHES "^Clang$"))
intel_flag_register_settings(
LinkerOptions
GROUP NAME DeadStrip "-Wl,-dead_strip"
ALIAS DeadCodeEliminate "-Wl,-dead_strip"
ALIAS DeadCodePreserve DeadStrip REMOVE_GROUP
)
endif()
endif()
endif()