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
|
--!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, TBOOX Open Source Group.
--
-- @author ruki
-- @file clang.lua
--
-- imports
import("core.tool.compiler")
import("core.project.project")
import("core.project.depend")
import("core.project.config")
import("utils.progress")
import("private.action.build.object", {alias = "objectbuilder"})
import("common")
-- load module support for the current target
function load(target)
local cachedir = common.modules_cachedir(target)
local stlcachedir = common.stlmodules_cachedir(target)
-- get module and module cache flags
local modulesflag = get_modulesflag(target)
local implicitmodulesflag = get_implicitmodulesflag(target)
local implicitmodulemapsflag = get_implicitmodulemapsflag(target)
local prebuiltmodulepathflag = get_prebuiltmodulepathflag(target)
-- add module flags
target:add("cxxflags", modulesflag)
-- add the module cache directory
target:add("cxxflags", implicitmodulesflag, {force = true})
target:add("cxxflags", implicitmodulemapsflag, {force = true})
target:add("cxxflags", prebuiltmodulepathflag .. cachedir, prebuiltmodulepathflag .. stlcachedir, {force = true})
-- add module cachedirs of all dependent targets with modules
-- this target maybe does not contain module files, @see https://github.com/xmake-io/xmake/issues/1858
for _, dep in ipairs(target:orderdeps()) do
cachedir = common.modules_cachedir(dep)
target:add("cxxflags", prebuiltmodulepathflag .. cachedir, {force = true})
end
end
-- get includedirs for stl headers
--
-- $ echo '#include <vector>' | clang -x c++ -E - | grep '/vector"'
-- # 1 "/usr/include/c++/11/vector" 1 3
-- # 58 "/usr/include/c++/11/vector" 3
-- # 59 "/usr/include/c++/11/vector" 3
--
function _get_toolchain_includedirs_for_stlheaders(includedirs, clang)
local tmpfile = os.tmpfile() .. ".cc"
io.writefile(tmpfile, "#include <vector>")
local result = try {function () return os.iorunv(clang, {"-E", "-x", "c++", tmpfile}) end}
if result then
for _, line in ipairs(result:split("\n", {plain = true})) do
line = line:trim()
if line:startswith("#") and line:find("/vector\"", 1, true) then
local includedir = line:match("\"(.+)/vector\"")
if includedir and os.isdir(includedir) then
table.insert(includedirs, path.normalize(includedir))
break
end
end
end
end
os.tryrm(tmpfile)
end
-- provide toolchain include directories for stl headerunit when p1689 is not supported
function toolchain_includedirs(target)
local includedirs = _g.includedirs
if includedirs == nil then
includedirs = {}
local clang, toolname = target:tool("cc")
assert(toolname == "clang")
_get_toolchain_includedirs_for_stlheaders(includedirs, clang)
local _, result = try {function () return os.iorunv(clang, {"-E", "-Wp,-v", "-xc", os.nuldev()}) end}
if result then
for _, line in ipairs(result:split("\n", {plain = true})) do
line = line:trim()
if os.isdir(line) then
table.insert(includedirs, path.normalize(line))
elseif line:startswith("End") then
break
end
end
end
_g.includedirs = includedirs
end
return includedirs
end
-- generate dependency files
function generate_dependencies(target, sourcebatch, opt)
local cachedir = common.modules_cachedir(target)
for _, sourcefile in ipairs(sourcebatch.sourcefiles) do
local dependfile = target:dependfile(sourcefile)
depend.on_changed(function()
progress.show(opt.progress, "${color.build.object}generating.cxx.module.deps %s", sourcefile)
local outdir = path.translate(path.join(cachedir, path.directory(path.relative(sourcefile, projectdir))))
if not os.isdir(outdir) then
os.mkdir(outdir)
end
-- no support of p1689 atm
local jsonfile = path.translate(path.join(outdir, path.filename(sourcefile) .. ".json"))
common.fallback_generate_dependencies(target, jsonfile, sourcefile)
local dependinfo = io.readfile(jsonfile)
return { moduleinfo = dependinfo }
end, {dependfile = dependfile, files = {sourcefile}})
end
end
-- generate target stl header units
function generate_stl_headerunits(target, batchcmds, headerunits, opt)
local compinst = target:compiler("cxx")
-- get cachedirs
local stlcachedir = common.stlmodules_cachedir(target)
-- get headerunits flags
local modulecachepathflag = get_modulecachepathflag(target)
local modulefileflag = get_modulefileflag(target)
-- build headerunits
local projectdir = os.projectdir()
local flags = {}
for i, headerunit in ipairs(headerunits) do
local bmifile = path.join(stlcachedir, headerunit.name .. get_bmi_extension())
if not os.isfile(bmifile) then
local args = {modulecachepathflag .. stlcachedir, "-c", "-o", bmifile, "-x", "c++-system-header", headerunit.path}
batchcmds:show_progress(opt.progress, "${color.build.object}generating.cxx.headerunit.bmi %s", headerunit.name)
batchcmds:vrunv(compinst:program(), table.join(compinst:compflags({target = target}), args))
end
batchcmds:set_depmtime(os.mtime(bmifile))
batchcmds:set_depcache(target:dependfile(bmifile))
table.insert(flags, modulefileflag .. bmifile)
end
return flags
end
-- generate target user header units
function generate_user_headerunits(target, batchcmds, headerunits, opt)
local compinst = target:compiler("cxx")
assert(has_headerunitsupport(target), "compiler(clang): does not support c++ header units!")
-- get cachedirs
local cachedir = common.modules_cachedir(target)
-- get headerunits flags
local modulecachepathflag = get_modulecachepathflag(target)
local emitmoduleflag = get_emitmoduleflag(target)
local modulefileflag = get_modulefileflag(target)
-- build headerunits
local objectfiles = {}
local flags = {}
local projectdir = os.projectdir()
for _, headerunit in ipairs(headerunits) do
local file = path.relative(headerunit.path, target:scriptdir())
local objectfile = target:objectfile(file)
local outdir
if headerunit.type == ":quote" then
outdir = path.join(cachedir, path.directory(path.relative(headerunit.path, projectdir)))
else
outdir = path.join(cachedir, path.directory(headerunit.path))
end
if not os.isdir(outdir) then
os.mkdir(outdir)
end
local bmifilename = path.basename(objectfile) .. get_bmi_extension()
local bmifile = (outdir and path.join(outdir, bmifilename) or bmifilename)
if not os.isdir(path.directory(objectfile)) then
os.mkdir(path.directory(objectfile))
end
local args = { modulecachepathflag .. cachedir, emitmoduleflag, "-c", "-o", bmifile}
if headerunit.type == ":quote" then
table.join2(args, {"-I", path.directory(headerunit.path), "-x", "c++-user-header", headerunit.path})
elseif headerunit.type == ":angle" then
table.join2(args, {"-x", "c++-system-header", headerunit.name})
end
batchcmds:show_progress(opt.progress, "${color.build.object}generating.cxx.headerunit.bmi %s", headerunit.name)
batchcmds:vrunv(compinst:program(), table.join(compinst:compflags({target = target}), args))
batchcmds:add_depfiles(headerunit.path)
batchcmds:set_depmtime(os.mtime(bmifile))
batchcmds:set_depcache(target:dependfile(bmifile))
table.insert(flags, modulefileflag .. bmifile)
end
return flags
end
-- build module files
function build_modules(target, batchcmds, objectfiles, modules, opt)
local compinst = target:compiler("cxx")
-- get cachedirs
local cachedir = common.modules_cachedir(target)
-- get modules flags
local modulecachepathflag = get_modulecachepathflag(target)
local emitmoduleinterfaceflag = get_emitmoduleinterfaceflag(target)
local modulefileflag = get_modulefileflag(target)
-- append deps modules
for _, dep in ipairs(target:orderdeps()) do
local flags = dep:data("cxx.modules.flags")
if flags then
target:add("cxxflags", flags, {force = true, expand = false})
end
end
local common_args = {modulecachepathflag .. cachedir}
for _, objectfile in ipairs(objectfiles) do
local m = modules[objectfile]
if m then
if not os.isdir(path.directory(objectfile)) then
os.mkdir(path.directory(objectfile))
end
local args = { emitmoduleinterfaceflag }
local bmiflags = {}
local bmifiles = {}
for name, provide in pairs(m.provides) do
batchcmds:show_progress(opt.progress, "${color.build.object}generating.cxx.module.bmi %s", name)
local bmifile = provide.bmi
table.join2(args, { "-c", "-x", "c++-module", "--precompile", provide.sourcefile, "-o", bmifile })
table.join2(bmifiles, bmifile)
batchcmds:add_depfiles(provide.sourcefile)
batchcmds:set_depmtime(os.mtime(bmifile))
batchcmds:set_depcache(target:dependfile(bmifile))
table.join2(bmiflags, {modulefileflag .. bmifile})
end
batchcmds:vrunv(compinst:program(), table.join(compinst:compflags({target = target}), common_args, args))
batchcmds:vrunv(compinst:program(), table.join(compinst:compflags({target = target}), common_args, bmifiles, {"-c", "-o", objectfile}))
batchcmds:set_depmtime(os.mtime(objectfile))
batchcmds:set_depcache(target:dependfile(objectfile))
target:add("cxxflags", bmiflags, {public = true, force = true})
target:add("objectfiles", objectfile)
for _, f in ipairs(bmiflags) do
target:data_add("cxx.modules.flags", f)
end
end
end
end
function get_bmi_extension()
return ".pcm"
end
function get_modulesflag(target)
local modulesflag = _g.modulesflag
if modulesflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-fmodules", "cxxflags", {flagskey = "clang_modules"}) then
modulesflag = "-fmodules"
end
if not modulesflag then
if compinst:has_flags("-fmodules-ts", "cxxflags", {flagskey = "clang_modules_ts"}) then
modulesflag = "-fmodules-ts"
end
end
assert(modulesflag, "compiler(clang): does not support c++ module!")
_g.modulesflag = modulesflag or false
end
return modulesflag or nil
end
function get_implicitmodulesflag(target)
local implicitmodulesflag = _g.implicitmodulesflag
if implicitmodulesflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-fimplicit-modules", "cxxflags", {flagskey = "clang_implicit_modules"}) then
implicitmodulesflag = "-fimplicit-modules"
end
assert(implicitmodulesflag, "compiler(clang): does not support c++ module!")
_g.implicitmodulesflag = implicitmodulesflag or false
end
return implicitmodulesflag or nil
end
function get_implicitmodulemapsflag(target)
local implicitmodulemapsflag = _g.implicitmodulemapsflag
if implicitmodulemapsflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-fimplicit-module-maps", "cxxflags", {flagskey = "clang_implicit_module_maps"}) then
implicitmodulemapsflag = "-fimplicit-module-maps"
end
assert(implicitmodulemapsflag, "compiler(clang): does not support c++ module!")
_g.implicitmodulemapsflag = implicitmodulemapsflag or false
end
return implicitmodulemapsflag or nil
end
function get_prebuiltmodulepathflag(target)
local prebuiltmodulepathflag = _g.prebuiltmodulepathflag
if prebuiltmodulepathflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-fprebuilt-module-path=" .. os.tmpdir(), "cxxflags", {flagskey = "clang_prebuild_module_path"}) then
prebuiltmodulepathflag = "-fprebuilt-module-path="
end
assert(prebuiltmodulepathflag, "compiler(clang): does not support c++ module!")
_g.prebuiltmodulepathflag = prebuiltmodulepathflag or false
end
return prebuiltmodulepathflag or nil
end
function get_modulecachepathflag(target)
local modulecachepathflag = _g.modulecachepathflag
if modulecachepathflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-fmodules-cache-path=" .. os.tmpdir(), "cxxflags", {flagskey = "clang_modules_cache_path"}) then
modulecachepathflag = "-fmodules-cache-path="
end
assert(modulecachepathflag, "compiler(clang): does not support c++ module!")
_g.modulecachepathflag = modulecachepathflag or false
end
return modulecachepathflag or nil
end
function get_emitmoduleflag(target)
local emitmoduleflag = _g.emitmoduleflag
if emitmoduleflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-emit-module", "cxxflags", {flagskey = "clang_emit_module"}) then
emitmoduleflag = "-emit-module"
end
assert(emitmoduleflag, "compiler(clang): does not support c++ module!")
_g.emitmoduleflag = emitmoduleflag or false
end
return emitmoduleflag or nil
end
function get_modulefileflag(target)
local modulefileflag = _g.modulefileflag
if modulefileflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-fmodule-file=" .. os.tmpfile() .. get_bmi_extension(), "cxxflags", {flagskey = "clang_module_file"}) then
modulefileflag = "-fmodule-file="
end
assert(modulefileflag, "compiler(clang): does not support c++ module!")
_g.modulefileflag = modulefileflag or false
end
return modulefileflag or nil
end
function get_emitmoduleinterfaceflag(target)
local emitmoduleinterfaceflag = _g.emitmoduleinterfaceflag
if emitmoduleinterfaceflag == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-emit-module-interface", "cxxflags", {flagskey = "clang_emit_module_interface"}) then
emitmoduleinterfaceflag = "-emit-module-interface"
end
assert(emitmoduleinterfaceflag, "compiler(clang): does not support c++ module!")
_g.emitmoduleinterfaceflag = emitmoduleinterfaceflag or false
end
return emitmoduleinterfaceflag or nil
end
function has_headerunitsupport(target)
local support_headerunits = _g.support_headerunits
if support_headerunits == nil then
local compinst = target:compiler("cxx")
if compinst:has_flags("-x c++-user-header", "cxxflags", {flagskey = "clang_user_header_unit_support", tryrun = true}) and
compinst:has_flags("-x c++-system-header", "cxxflags", {flagskey = "clang_system_header_unit_support", tryrun = true}) then
support_headerunits = true
end
_g.support_headerunits = support_headerunits or false
end
return support_headerunits or nil
end
|