summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"