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
|
--!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 compiler.lua
--
-- define module
local compiler = compiler or {}
-- load modules
local io = require("base/io")
local path = require("base/path")
local utils = require("base/utils")
local table = require("base/table")
local string = require("base/string")
local option = require("base/option")
local profiler = require("base/profiler")
local tool = require("tool/tool")
local builder = require("tool/builder")
local config = require("project/config")
local sandbox = require("sandbox/sandbox")
local language = require("language/language")
local platform = require("platform/platform")
-- get the language of compiler
function compiler:_language()
return self._LANGUAGE
end
-- add flags from the toolchains
function compiler:_add_flags_from_toolchains(flags, targetkind, target)
-- add flags for platform with the given target kind, e.g. binary.gcc.cxflags or binary.cxflags
if targetkind then
local toolname = self:name()
if target and target.toolconfig then
for _, flagkind in ipairs(self:_flagkinds()) do
local toolflags = target:toolconfig(targetkind .. '.' .. toolname .. '.' .. flagkind)
table.join2(flags, toolflags or target:toolconfig(targetkind .. '.' .. flagkind))
end
else
for _, flagkind in ipairs(self:_flagkinds()) do
local toolflags = platform.toolconfig(targetkind .. '.' .. toolname .. '.' .. flagkind)
table.join2(flags, toolflags or platform.toolconfig(targetkind .. '.' .. flagkind))
end
end
end
end
-- add flags from the compiler
function compiler:_add_flags_from_compiler(flags, targetkind)
for _, flagkind in ipairs(self:_flagkinds()) do
-- add compiler, e.g. cxflags
table.join2(flags, self:get(flagkind))
-- add compiler, e.g. targetkind.cxflags
if targetkind then
table.join2(flags, self:get(targetkind .. '.' .. flagkind))
end
end
end
-- add flags from the sourcefile config
function compiler:_add_flags_from_fileconfig(flags, target, sourcefile, fileconfig)
-- add flags from the current compiler
local add_sourceflags = self:_tool().add_sourceflags
if add_sourceflags then
local flag = add_sourceflags(self:_tool(), sourcefile, fileconfig, target, self:_targetkind())
if flag and flag ~= "" then
table.join2(flags, flag)
end
end
-- add flags from the common argument option
self:_add_flags_from_argument(flags, target, fileconfig)
end
-- load compiler tool
function compiler._load_tool(sourcekind, target)
local program, toolname, toolchain_info
if target and target.tool then
program, toolname, toolchain_info = target:tool(sourcekind)
end
-- is host?
local is_host
if target and target.is_host then
is_host = target:is_host()
end
-- load the compiler tool from the source kind
local result, errors = tool.load(sourcekind, {
host = is_host,
program = program,
toolname = toolname,
toolchain_info = toolchain_info})
if not result then
return nil, errors
end
return result, program
end
-- load the compiler from the given source kind
function compiler.load(sourcekind, target)
if not sourcekind then
return nil, "unknown source kind!"
end
-- init cache key
-- @note we need plat/arch,
-- because it is possible for the compiler to do cross-compilation with the -target parameter
local plat = config.plat() or os.host()
local arch = config.arch() or os.arch()
if target and target.tool then
local _, _, toolchain_info = target:tool(sourcekind)
if toolchain_info then
plat = toolchain_info.plat
arch = toolchain_info.arch
end
end
local cachekey = sourcekind .. (program_or_errors or "") .. plat .. arch
if target then
cachekey = cachekey .. tostring(target)
end
-- get it directly from cache dirst
compiler._INSTANCES = compiler._INSTANCES or {}
local instance = compiler._INSTANCES[cachekey]
if not instance then
instance = table.inherit(compiler, builder)
-- load compiler tool
-- @NOTE We cannot cache the tool, otherwise it may cause duplicate toolchain flags to be added
local compiler_tool, program_or_errors = compiler._load_tool(sourcekind, target)
if not compiler_tool then
return nil, program_or_errors
end
instance._TOOL = compiler_tool
-- load the compiler language from the source kind
local result, errors = language.load_sk(sourcekind)
if not result then
return nil, errors
end
instance._LANGUAGE = result
-- init target (optional)
instance._TARGET = target
-- init target kind
instance._TARGETKIND = "object"
-- init name flags
instance._NAMEFLAGS = result:nameflags()[instance:_targetkind()]
-- init flag kinds
instance._FLAGKINDS = table.wrap(result:sourceflags()[sourcekind])
-- add toolchains flags to the compiler tool, e.g. gcc.cxflags or cxflags
local toolname = compiler_tool:name()
if target and target.toolconfig then
for _, flagkind in ipairs(instance:_flagkinds()) do
compiler_tool:add(flagkind, target:toolconfig(toolname .. '.' .. flagkind) or target:toolconfig(flagkind))
end
else
for _, flagkind in ipairs(instance:_flagkinds()) do
compiler_tool:add(flagkind, platform.toolconfig(toolname .. '.' .. flagkind) or platform.toolconfig(flagkind))
end
end
-- @note we can't call _load_once before caching the instance,
-- it may call has_flags to trigger the concurrent scheduling.
--
-- this will result in more compiler/linker instances being created at the same time,
-- and they will access the same tool instance at the same time.
--
-- @see https://github.com/xmake-io/xmake/issues/3429
compiler._INSTANCES[cachekey] = instance
end
-- we need to load it at the end because in tool.load().
-- because we may need to call has_flags, which requires the full platform toolchain flags
local ok, errors = instance:_tool():_load_once()
if not ok then
return nil, errors
end
return instance
end
-- build the source files (compile and link)
function compiler:build(sourcefiles, targetfile, opt)
opt = opt or {}
-- get compile flags
local compflags = opt.compflags
if not compflags then
-- patch sourcefile to get flags of the given source file
if type(sourcefiles) == "string" then
opt.sourcefile = sourcefiles
end
compflags = self:compflags(opt)
end
-- make flags
local flags = compflags
if opt.target then
flags = table.join(flags, opt.target:linkflags())
end
-- get target kind
local targetkind = opt.targetkind
if not targetkind and opt.target and opt.target.targetkind then
targetkind = opt.target:kind()
end
return sandbox.load(self:_tool().build, self:_tool(), sourcefiles, targetkind or "binary", targetfile, flags, opt)
end
-- get the build arguments list (compile and link)
function compiler:buildargv(sourcefiles, targetfile, opt)
opt = opt or {}
-- get compile flags
local compflags = opt.compflags
if not compflags then
-- patch sourcefile to get flags of the given source file
if type(sourcefiles) == "string" then
opt.sourcefile = sourcefiles
end
compflags = self:compflags(opt)
end
-- make flags
local flags = compflags
if opt.target then
flags = table.join(flags, opt.target:linkflags())
end
-- get target kind
local targetkind = opt.targetkind
if not targetkind and opt.target and opt.target.targetkind then
targetkind = opt.target:kind()
end
return self:_tool():buildargv(sourcefiles, targetkind or "binary", targetfile, flags, opt)
end
-- get the build command
function compiler:buildcmd(sourcefiles, targetfile, opt)
return os.args(table.join(self:buildargv(sourcefiles, targetfile, opt)))
end
-- compile the source files
function compiler:compile(sourcefiles, objectfile, opt)
opt = opt or {}
-- get compile flags
local compflags = opt.compflags
if not compflags then
-- patch sourcefile to get flags of the given source file
if type(sourcefiles) == "string" then
opt.sourcefile = sourcefiles
end
compflags = self:compflags(opt)
end
-- compile it
opt = table.copy(opt)
opt.target = self:target()
profiler:enter(self:name(), "compile", sourcefiles)
local ok, errors = sandbox.load(self:_tool().compile, self:_tool(), sourcefiles, objectfile, opt.dependinfo, compflags, opt)
profiler:leave(self:name(), "compile", sourcefiles)
return ok, errors
end
-- get the compile arguments list
function compiler:compargv(sourcefiles, objectfile, opt)
opt = opt or {}
-- get compile flags
local compflags = opt.compflags
if not compflags then
-- patch sourcefile to get flags of the given source file
if type(sourcefiles) == "string" then
opt.sourcefile = sourcefiles
end
compflags = self:compflags(opt)
end
return self:_tool():compargv(sourcefiles, objectfile, compflags, opt)
end
-- get the compile command
function compiler:compcmd(sourcefiles, objectfile, opt)
return os.args(table.join(self:compargv(sourcefiles, objectfile, opt)))
end
-- get the compling flags
--
-- @param opt the argument options (contain all the compiler attributes of target),
-- e.g.
-- {target = ..., targetkind = "static", configs = {defines = "", cxflags = "", includedirs = ""}}
--
-- @return flags list
--
function compiler:compflags(opt)
opt = opt or {}
-- get target
local target = opt.target or self:target()
local targetkind = opt.targetkind
if not targetkind and target and target:type() == "target" then
targetkind = target:kind()
end
-- add flags from compiler/toolchains
--
-- we need to add toolchain flags at the beginning to allow users to override them.
-- but includedirs/links/syslinks/linkdirs will still be placed last, they are in the order defined in languages/xmake.lua
--
-- @see https://github.com/xmake-io/xmake/issues/978
--
local flags = {}
self:_add_flags_from_compiler(flags, targetkind)
self:_add_flags_from_toolchains(flags, targetkind, target)
-- add flags from target
self:_add_flags_from_target(flags, target)
-- add flags from source file configuration
if opt.sourcefile and target and target.fileconfig then
local fileconfig = target:fileconfig(opt.sourcefile)
if fileconfig then
self:_add_flags_from_fileconfig(flags, target, opt.sourcefile, fileconfig)
end
end
-- add flags from argument
local configs = opt.configs or opt.config
if configs then
self:_add_flags_from_argument(flags, target, configs)
end
-- add flags from user configuration
self:_add_flags_from_config(flags)
-- preprocess flags
return self:_preprocess_flags(flags)
end
-- return module
return compiler
|