aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-16 04:02:48 -0800
committerGravatar Jarred Sumner <jarred@jarredsumner.com> 2022-02-16 04:02:48 -0800
commita7bfc48bcc775daf1556d6246a72e29fef2a06fe (patch)
tree2a34aa39af375df922daa1cb324c21f5f624fe5e
parent6f1891462d570756f1c14a5431af894e8683a928 (diff)
downloadbun-a7bfc48bcc775daf1556d6246a72e29fef2a06fe.tar.gz
bun-a7bfc48bcc775daf1556d6246a72e29fef2a06fe.tar.zst
bun-a7bfc48bcc775daf1556d6246a72e29fef2a06fe.zip
mimalloc flag
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0bac42cd2..0dbe8c1f5 100644
--- a/Makefile
+++ b/Makefile
@@ -784,7 +784,7 @@ jsc-bindings-mac: $(OBJ_FILES)
# mimalloc is built as object files so that it can overload the system malloc
mimalloc:
- cd $(BUN_DEPS_DIR)/mimalloc; CFLAGS="$(CFLAGS)" cmake $(CMAKE_FLAGS) -DMI_SKIP_COLLECT_ON_EXIT=ON -DMI_BUILD_SHARED=OFF -DMI_BUILD_STATIC=ON -DMI_BUILD_TESTS=OFF -DMI_BUILD_OBJECT=ON ${MIMALLOC_OVERRIDE_FLAG} -DMI_USE_CXX=ON .; make;
+ cd $(BUN_DEPS_DIR)/mimalloc; CFLAGS="$(CFLAGS)" cmake $(CMAKE_FLAGS) -DMI_SKIP_COLLECT_ON_EXIT=1 -DMI_BUILD_SHARED=OFF -DMI_BUILD_STATIC=ON -DMI_BUILD_TESTS=OFF -DMI_BUILD_OBJECT=ON ${MIMALLOC_OVERRIDE_FLAG} -DMI_USE_CXX=ON .; make;
cp $(BUN_DEPS_DIR)/mimalloc/$(MIMALLOC_INPUT_PATH) $(BUN_DEPS_OUT_DIR)/$(MIMALLOC_FILE)
bun-link-lld-debug: