summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-09-21 10:43:38 +0800
committerruki <[email protected]>2025-09-21 20:50:55 +0800
commitbfcaa018829d09ca860833f6befa8cc2df52d5ea (patch)
tree22272c26e22b2f870107eaab4b75db838ca89d5b
parent31dcfb659ba09757ae194e212900a6f1c3cdf695 (diff)
enable mimalloc to test ci
-rw-r--r--core/xmake.lua2
-rwxr-xr-xcore/xmake.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/xmake.lua b/core/xmake.lua
index e84a1506d..dded49371 100644
--- a/core/xmake.lua
+++ b/core/xmake.lua
@@ -75,7 +75,7 @@ option_end()
-- the mimalloc option
option("mimalloc")
- set_default(false)
+ set_default(true)
set_description("Use mimalloc as memory allocator")
option_end()
diff --git a/core/xmake.sh b/core/xmake.sh
index 0c143f03c..03e2be6e3 100755
--- a/core/xmake.sh
+++ b/core/xmake.sh
@@ -36,7 +36,7 @@ option "runtime" "Use luajit or lua runtime" "lua"
option "external" "Always use external dependencies" false
# use mimalloc
-option "mimalloc" "Use mimalloc as memory allocator" false
+option "mimalloc" "Use mimalloc as memory allocator" true
# the readline option
option "readline"