diff options
| author | Stefan Boberg <[email protected]> | 2024-08-15 22:01:18 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-08-15 22:01:18 +0200 |
| commit | 50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0 (patch) | |
| tree | 86a94e21f678aa5ed97387bb58237305116a67c6 /xmake.lua | |
| parent | prevent new block in gc (#118) (diff) | |
| download | zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.tar.xz zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.zip | |
enable sentry on arm64 (#119)
* enable sentry on arm64
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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") |