summaryrefslogtreecommitdiff
path: root/tests/projects/c++/modules/test_stdmodules.lua
diff options
context:
space:
mode:
authorstar9029 <[email protected]>2025-03-01 23:36:12 +0800
committerstar9029 <[email protected]>2025-03-01 23:36:12 +0800
commitd679ae73f4cbd996e37cb2f63636d197b6354a7c (patch)
treef00b02330e07e1018c76a3a3c7eca29905ad8ec5 /tests/projects/c++/modules/test_stdmodules.lua
parent71d9ffe82a95e9965fe0c15aaac627fe0f8d323c (diff)
Improve test_stdmodules.lua
Diffstat (limited to 'tests/projects/c++/modules/test_stdmodules.lua')
-rw-r--r--tests/projects/c++/modules/test_stdmodules.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/projects/c++/modules/test_stdmodules.lua b/tests/projects/c++/modules/test_stdmodules.lua
index 34d5400a3..d9b25ef56 100644
--- a/tests/projects/c++/modules/test_stdmodules.lua
+++ b/tests/projects/c++/modules/test_stdmodules.lua
@@ -21,11 +21,8 @@ function main(t)
if is_subhost("windows") then
local clang = find_tool("clang", {version = true})
if clang and clang.version and semver.compare(clang.version, "19.0") >= 0 then
- -- clang don't support msstl std modules atm
- -- os.exec("xmake f --toolchain=clang -c --yes")
- -- _build()
os.exec("xmake clean -a")
- os.exec("xmake f --toolchain=clang --runtimes=c++_shared -c --yes")
+ os.exec("xmake f --toolchain=clang -c --yes")
_build()
end
local msvc = toolchain.load("msvc")