summaryrefslogtreecommitdiff
path: root/xmake/modules/private/utils/toolchain.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2024-03-23 00:11:55 +0800
committerruki <[email protected]>2024-03-23 00:11:55 +0800
commite3c73d10f93a727ab7e8a710c1e91057391315c3 (patch)
tree21c4948de7e3ec298f37fedb063191ea7f39c113 /xmake/modules/private/utils/toolchain.lua
parent77a1eb757584e42371a0ace7ab8741620fb35665 (diff)
improve compatible
Diffstat (limited to 'xmake/modules/private/utils/toolchain.lua')
-rw-r--r--xmake/modules/private/utils/toolchain.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/utils/toolchain.lua b/xmake/modules/private/utils/toolchain.lua
index dd1b6df0c..686c06ffd 100644
--- a/xmake/modules/private/utils/toolchain.lua
+++ b/xmake/modules/private/utils/toolchain.lua
@@ -25,7 +25,7 @@ function is_compatible_with_host(name)
return true
end
elseif is_host("windows") then
- if name == "msvc" or name == "llvm" then
+ if name == "msvc" or name == "llvm" or name == "clang-cl" then
return true
end
end