diff options
author | 2022-02-16 04:02:48 -0800 | |
---|---|---|
committer | 2022-02-16 04:02:48 -0800 | |
commit | a7bfc48bcc775daf1556d6246a72e29fef2a06fe (patch) | |
tree | 2a34aa39af375df922daa1cb324c21f5f624fe5e | |
parent | 6f1891462d570756f1c14a5431af894e8683a928 (diff) | |
download | bun-a7bfc48bcc775daf1556d6246a72e29fef2a06fe.tar.gz bun-a7bfc48bcc775daf1556d6246a72e29fef2a06fe.tar.zst bun-a7bfc48bcc775daf1556d6246a72e29fef2a06fe.zip |
mimalloc flag
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |