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
|
--!The Automatic Cross-platform Build Tool
--
-- XMake is free software; you can redistribute it and/or modify
-- it under the terms of the GNU Lesser General Public License as published by
-- the Free Software Foundation; either version 2.1 of the License, or
-- (at your option) any later version.
--
-- XMake is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Lesser General Public License for more details.
--
-- You should have received a copy of the GNU Lesser General Public License
-- along with XMake;
-- If not, see <a href="http://www.gnu.org/licenses/"> http://www.gnu.org/licenses/</a>
--
-- Copyright (C) 2015 - 2016, ruki All rights reserved.
--
-- @author ruki
-- @file main.lua
--
-- imports
import("core.base.option")
import("core.project.config")
import("core.project.global")
import("core.project.project")
import("core.platform.platform")
import("core.project.cache")
import("configheader")
-- filter option
function _option_filter(name)
return name and name ~= "target" and name ~= "file" and name ~= "project" and name ~= "verbose"
end
-- host changed?
function _host_changed(targetname)
return os.host() ~= config.read("host", targetname)
end
-- need check
function _need_check()
-- clean?
if option.get("clean") then
return true
end
-- the configure has been changed? reconfig it
if config.changed() then
return true
end
-- get the current mtimes
local mtimes = project.mtimes()
-- get the previous mtimes
local changed = false
local mtimes_prev = cache.get("mtimes")
if mtimes_prev then
-- check for all project files
for file, mtime in pairs(mtimes) do
-- modified? reconfig and rebuild it
local mtime_prev = mtimes_prev[file]
if not mtime_prev or mtime > mtime_prev then
changed = true
break
end
end
end
-- update mtimes
cache.set("mtimes", mtimes)
-- changed?
return changed
end
-- check dependent target
function _check_target_deps(target)
-- check
for _, depname in ipairs(target:get("deps")) do
-- check dependent target name
assert(depname ~= target:name(), "the target(%s) cannot depend self!", depname)
-- get dependent target
local deptarget = project.target(depname)
-- check dependent target name
assert(deptarget, "unknown target(%s) for %s.deps!", depname, target:name())
-- check the dependent targets
_check_target_deps(deptarget)
end
end
-- check target
function _check_target(targetname)
-- check
assert(targetname)
-- all?
if targetname == "all" then
-- check the dependent targets
for _, target in pairs(project.targets()) do
_check_target_deps(target)
end
else
-- get target
local target = project.target(targetname)
-- check target name
assert(target, "unknown target: %s", targetname)
-- check the dependent targets
_check_target_deps(target)
end
end
-- main
function main()
-- avoid to run this task repeatly
if _g.finished then
return
end
-- check xmake.lua
if not os.isfile(project.file()) then
raise("xmake.lua not found!")
end
-- the target name
local targetname = option.get("target") or "all"
-- load global configure
global.load()
-- init the project configure
--
-- priority: option > option_cache > global > option_default > config_check > project_check > config_cache
--
config.init()
-- enter cache scope
cache.enter("local.config")
-- get the options
local options = nil
for name, value in pairs(option.options()) do
if _option_filter(name) then
options = options or {}
options[name] = value
end
end
-- override configure from the options or cache
if not option.get("clean") then
options = options or cache.get("options_" .. targetname)
end
for name, value in pairs(options) do
config.set(name, value)
end
-- merge the global configure
for name, value in pairs(global.options()) do
if config.get(name) == nil then
config.set(name, value)
end
end
-- merge the default options
for name, value in pairs(option.defaults()) do
if _option_filter(name) and config.get(name) == nil then
config.set(name, value)
end
end
-- merge the checked configure
local recheck = _need_check()
if recheck then
-- check configure
config.check()
-- check project options
project.check()
-- rebuild it
cache.set("rebuild", true)
end
-- merge the cached configure
if not option.get("clean") and not _host_changed(targetname) then
config.load(targetname)
end
-- load platform
platform.load(config.plat())
-- translate the build directory
local buildir = config.get("buildir")
if buildir and path.is_absolute(buildir) then
config.set("buildir", path.relative(buildir, project.directory()))
end
-- load project
project.load()
-- check target
_check_target(targetname)
-- save options and configure for the given target
config.save(targetname)
cache.set("options_" .. targetname, options)
-- save options and configure for each targets if be all
if targetname == "all" then
for _, target in pairs(project.targets()) do
config.save(target:name())
cache.set("options_" .. target:name(), options)
end
end
-- flush cache
cache.flush()
-- make the config.h
configheader.make()
-- dump it
config.dump()
-- finished
_g.finished = true
-- trace
print("configure ok!")
end
|