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
391
392
393
394
395
396
397
398
399
400
401
402
|
--!A cross-platform build utility based on Lua
--
-- 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.
--
-- Copyright (C) 2015-present, Xmake Open Source Community.
--
-- @author ruki
-- @file xmake.lua
--
-- define rule: debug mode
rule("mode.debug")
on_config(function (target)
-- is debug mode now? xmake f -m debug
if is_mode("debug") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- disable optimization
if not target:get("optimize") then
target:set("optimize", "none")
end
-- #5777: '--device-debug (-G)' overrides '--generate-line-info (-lineinfo)' in nvcc
target:add("cuflags", "-G")
end
end)
-- define rule: release mode
rule("mode.release")
on_config(function (target)
-- is release mode now? xmake f -m release
if is_mode("release") then
-- set the symbols visibility: hidden
if not target:get("symbols") and target:kind() ~= "shared" then
target:set("symbols", "hidden")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- strip all symbols
if not target:get("strip") then
target:set("strip", "all")
end
-- enable NDEBUG macros to disables standard-C assertions
target:add("cxflags", "-DNDEBUG")
target:add("cuflags", "-DNDEBUG")
end
end)
-- define rule: release with debug symbols mode
rule("mode.releasedbg")
on_config(function (target)
-- is releasedbg mode now? xmake f -m releasedbg
if is_mode("releasedbg") then
-- set the symbols visibility: debug
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- strip all symbols, but it will generate debug symbol file because debug/symbols is setted
if not target:get("strip") then
target:set("strip", "all")
end
-- enable NDEBUG macros to disables standard-C assertions
target:add("cxflags", "-DNDEBUG")
target:add("cuflags", "-DNDEBUG")
-- #5777: '--device-debug (-G)' overrides '--generate-line-info (-lineinfo)' in nvcc
target:add("cuflags", "-lineinfo")
end
end)
-- define rule: release with minsize mode
rule("mode.minsizerel")
on_config(function (target)
-- is minsizerel mode now? xmake f -m minsizerel
if is_mode("minsizerel") then
-- set the symbols visibility: hidden
if not target:get("symbols") then
target:set("symbols", "hidden")
end
-- enable optimization
if not target:get("optimize") then
target:set("optimize", "smallest")
end
-- strip all symbols
if not target:get("strip") then
target:set("strip", "all")
end
-- enable NDEBUG macros to disables standard-C assertions
target:add("cxflags", "-DNDEBUG")
target:add("cuflags", "-DNDEBUG")
end
end)
-- define rule: profile mode
rule("mode.profile")
on_config(function (target)
-- is profile mode now? xmake f -m profile
if is_mode("profile") then
-- set the symbols visibility: debug
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
if target:is_plat("windows") then
-- enable vs profile
target:add("ldflags", "/profile")
else
-- enable gprof
target:add("cxflags", "-pg")
target:add("mxflags", "-pg")
target:add("ldflags", "-pg")
end
-- enable NDEBUG macros to disables standard-C assertions
target:add("cxflags", "-DNDEBUG")
target:add("cuflags", "-DNDEBUG")
-- #5777: '--device-debug (-G)' overrides '--generate-line-info (-lineinfo)' in nvcc
target:add("cuflags", "-lineinfo")
end
end)
-- define rule: coverage mode
rule("mode.coverage")
on_config(function (target)
-- is coverage mode now? xmake f -m coverage
if is_mode("coverage") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- disable optimization
if not target:get("optimize") then
target:set("optimize", "none")
end
-- enable coverage
target:add("cxflags", "--coverage")
target:add("mxflags", "--coverage")
target:add("ldflags", "--coverage")
target:add("shflags", "--coverage")
-- disable build cache, it does not support to cache coverage files
-- https://github.com/xmake-io/xmake/issues/6664
target:set("policy", "build.ccache", false)
end
end)
-- define rule: asan mode
rule("mode.asan")
-- we use after_load because c++.build.sanitizer rule/on_config need it
after_load(function (target)
-- is asan mode now? xmake f -m asan
if is_mode("asan") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- enable asan checker
target:set("policy", "build.sanitizer.address", true)
-- we should use "build.sanitizer.address" instead of it.
wprint("deprecated: please use set_policy(\"build.sanitizer.address\", true) instead of \"mode.asan\".")
end
end)
-- define rule: tsan mode
rule("mode.tsan")
after_load(function (target)
-- is tsan mode now? xmake f -m tsan
if is_mode("tsan") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- enable tsan checker
target:set("policy", "build.sanitizer.thread", true)
-- we should use "build.sanitizer.thread" instead of it.
wprint("deprecated: please use set_policy(\"build.sanitizer.thread\", true) instead of \"mode.tsan\".")
end
end)
-- define rule: msan mode
rule("mode.msan")
after_load(function (target)
-- is msan mode now? xmake f -m msan
if is_mode("msan") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- enable msan checker
target:set("policy", "build.sanitizer.memory", true)
-- we should use "build.sanitizer.memory" instead of it.
wprint("deprecated: please use set_policy(\"build.sanitizer.memory\", true) instead of \"mode.msan\".")
end
end)
-- define rule: lsan mode
rule("mode.lsan")
after_load(function (target)
-- is lsan mode now? xmake f -m lsan
if is_mode("lsan") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- enable lsan checker
target:set("policy", "build.sanitizer.leak", true)
-- we should use "build.sanitizer.leak" instead of it.
wprint("deprecated: please use set_policy(\"build.sanitizer.leak\", true) instead of \"mode.lsan\".")
end
end)
-- define rule: ubsan mode
rule("mode.ubsan")
after_load(function (target)
-- is ubsan mode now? xmake f -m ubsan
if is_mode("ubsan") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
-- enable ubsan checker
target:set("policy", "build.sanitizer.undefined", true)
-- we should use "build.sanitizer.undefined" instead of it.
wprint("deprecated: please use set_policy(\"build.sanitizer.undefined\", true) instead of \"mode.ubsan\".")
end
end)
-- define rule: valgrind mode
rule("mode.valgrind")
on_config(function (target)
-- is valgrind mode now? xmake f -m valgrind
if is_mode("valgrind") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- enable optimization
if not target:get("optimize") then
if target:is_plat("android", "iphoneos") then
target:set("optimize", "smallest")
else
target:set("optimize", "fastest")
end
end
end
end)
-- define rule: check mode (deprecated)
rule("mode.check")
on_config(function (target)
-- is check mode now? xmake f -m check
if is_mode("check") then
-- enable the debug symbols
if not target:get("symbols") then
target:set("symbols", "debug")
end
-- disable optimization
if not target:get("optimize") then
target:set("optimize", "none")
end
-- attempt to enable some checkers for pc
if is_mode("check") and is_arch("i386", "x86_64") then
target:add("cxflags", "-fsanitize=address", "-ftrapv")
target:add("mxflags", "-fsanitize=address", "-ftrapv")
target:add("ldflags", "-fsanitize=address")
target:add("shflags", "-fsanitize=address")
end
end
end)
|