summaryrefslogtreecommitdiff
path: root/xmake/modules/private/action/trybuild/cmake.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2024-07-08 23:00:53 +0800
committerruki <[email protected]>2024-07-08 23:00:53 +0800
commit8a9a8a2bee6db0730d6e376e0114a3430ceba063 (patch)
treeb7333d11f472013bdc10b68cfd64462ffb07e6d4 /xmake/modules/private/action/trybuild/cmake.lua
parentb42d338164895297339e94792faf2da4418f1e88 (diff)
enable arm64ec for tools.cmake again
Diffstat (limited to 'xmake/modules/private/action/trybuild/cmake.lua')
-rw-r--r--xmake/modules/private/action/trybuild/cmake.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/private/action/trybuild/cmake.lua b/xmake/modules/private/action/trybuild/cmake.lua
index 94df5a450..c976e4bd5 100644
--- a/xmake/modules/private/action/trybuild/cmake.lua
+++ b/xmake/modules/private/action/trybuild/cmake.lua
@@ -110,7 +110,8 @@ function _get_cmake_system_processor()
x64 = "AMD64",
x86_64 = "AMD64",
arm = "ARM",
- arm64 = "ARM64"
+ arm64 = "ARM64",
+ arm64ec = "ARM64EC"
}
return archs[os.subarch()] or os.subarch()
end