diff options
author | 2023-04-27 05:21:15 -0700 | |
---|---|---|
committer | 2023-04-27 05:35:11 -0700 | |
commit | 73467a5736338fc7424fb92a59835d207d977b6c (patch) | |
tree | f6899790beb3e4ba8fef1858c845ae66a1565e78 /Makefile | |
parent | 5a8a418ef4aace992139157de9391d7e069d499d (diff) | |
download | bun-73467a5736338fc7424fb92a59835d207d977b6c.tar.gz bun-73467a5736338fc7424fb92a59835d207d977b6c.tar.zst bun-73467a5736338fc7424fb92a59835d207d977b6c.zip |
Fix mimalloc-debug
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1320,9 +1320,9 @@ mimalloc-debug: -DMI_OVERRIDE=OFF \ -DCMAKE_C_FLAGS="$(CFLAGS)" \ -DCMAKE_CXX_FLAGS="$(CFLAGS)" \ - -GNinja + -GNinja \ . \ - && ninja; + && ninja cp $(BUN_DEPS_DIR)/mimalloc/$(_MIMALLOC_DEBUG_FILE) $(BUN_DEPS_OUT_DIR)/$(MIMALLOC_FILE) @@ -1345,7 +1345,7 @@ mimalloc: -DMI_OSX_ZONE=OFF \ -DCMAKE_C_FLAGS="$(CFLAGS)" \ -GNinja \ - .\ + . \ && ninja; cp $(BUN_DEPS_DIR)/mimalloc/$(MIMALLOC_INPUT_PATH) $(BUN_DEPS_OUT_DIR)/$(MIMALLOC_FILE) |