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
|
import("lib.detect.find_tool")
import("core.base.semver")
import("core.tool.toolchain")
import("utils.ci.is_running", {alias = "ci_is_running"})
function _gen_cmakelist()
if not os.isfile("CMakeLists.txt") then
os.vrunv("xmake project -k cmake")
end
end
function _build(name, opt)
opt = opt or {}
local build_args = {}
if ci_is_running() then
table.insert(build_args, "-vD")
end
os.rm(".xmake", "build")
os.mv("xmake.lua", "xmake.lua_")
os.vrunv("xmake", table.join({"f", "--trybuild=cmake", "--toolchain=" .. name}, build_args), {shell = true, envs = opt.envs})
os.vrunv("xmake", table.join({"b"}, build_args), {shell = true, envs = opt.envs})
os.mv("xmake.lua_", "xmake.lua")
end
function _build_with(name, minver)
if name == "msvc" then
local _toolchain = toolchain.load(name, {plat = os.host(), arch = os.arch()})
if _toolchain and _toolchain:check() then
local vcvars = _toolchain:config("vcvars")
if vcvars and vcvars.VCToolsVersion and semver.compare(vcvars.VCToolsVersion, minver) >= 0 then
_build(name, {envs = vcvars})
end
end
else
local tool = find_tool(name, {version = true})
if tool and tool.version and semver.compare(tool.version, minver) >= 0 then
local _toolchain = toolchain.load(name, {plat = os.host(), arch = os.arch()})
if _toolchain and _toolchain:check() then
_build(name)
end
end
end
end
function main(t)
os.setenv("CMAKE_GENERATOR", "Ninja")
local cmake = find_tool("cmake", {version = true})
local ninja = find_tool("ninja")
if ninja and cmake and cmake.version and semver.compare(cmake.version, "3.28") >= 0 then
_gen_cmakelist()
if is_subhost("windows") then
_build_with("clang", "19")
_build_with("msvc", "14.35")
elseif is_subhost("linux") then
_build_with("gcc", "14")
_build_with("clang", "19")
elseif is_subhost("macosx") then
-- macOS doesn't ship clang-scan-deps currently
-- check if normal clang is avalaible
local regular_clang_available = false
local outdata = os.iorun("clang --version")
if outdata then
regular_clang_available = true
if outdata:find("Apple") then
regular_clang_available = false
end
end
if not regular_clang_available then
wprint("Appleclang isn't shipped with clang-scan-deps, disabling modules tests")
return
end
_build_with("clang", "19")
end
end
end
|