diff options
| author | ruki <[email protected]> | 2024-03-23 00:11:55 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-03-23 00:11:55 +0800 |
| commit | e3c73d10f93a727ab7e8a710c1e91057391315c3 (patch) | |
| tree | 21c4948de7e3ec298f37fedb063191ea7f39c113 | |
| parent | 77a1eb757584e42371a0ace7ab8741620fb35665 (diff) | |
improve compatible
| -rw-r--r-- | xmake/modules/private/utils/toolchain.lua | 2 |
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 |
