aboutsummaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2024-08-15 22:01:18 +0200
committerGitHub Enterprise <[email protected]>2024-08-15 22:01:18 +0200
commit50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0 (patch)
tree86a94e21f678aa5ed97387bb58237305116a67c6 /xmake.lua
parentprevent new block in gc (#118) (diff)
downloadzen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.tar.xz
zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.zip
enable sentry on arm64 (#119)
* enable sentry on arm64
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmake.lua b/xmake.lua
index 845ac6660..62c02c629 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -39,8 +39,6 @@ if is_plat("windows") then
add_requires("7z")
end
-if not is_arch("arm64") then
- add_requires("vcpkg::mimalloc")
if has_config("zensentry") then
if is_plat("linux") then
add_requires("vcpkg::sentry-native 0.5.4")
@@ -48,6 +46,9 @@ if not is_arch("arm64") then
add_requires("vcpkg::sentry-native")
end
end
+
+if not is_arch("arm64") then
+ add_requires("vcpkg::mimalloc")
end
add_rules("mode.debug", "mode.release")