From ff020735989e495cce2cb056948ab1e3d6b56334 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 25 Mar 2025 10:41:03 +0100 Subject: [PATCH] fixup! mimalloc: offer a build-time option to enable it Adjust the `Makefile` part for mimalloc v2.2.2. Signed-off-by: Johannes Schindelin --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1925497357..854023b86e 100644 --- a/Makefile +++ b/Makefile @@ -2176,13 +2176,13 @@ ifdef USE_MIMALLOC compat/mimalloc/bitmap.o \ compat/mimalloc/heap.o \ compat/mimalloc/init.o \ + compat/mimalloc/libc.o \ compat/mimalloc/options.o \ compat/mimalloc/os.o \ compat/mimalloc/page.o \ compat/mimalloc/random.o \ - compat/mimalloc/prim/windows/prim.o \ + compat/mimalloc/prim/prim.o \ compat/mimalloc/segment.o \ - compat/mimalloc/segment-cache.o \ compat/mimalloc/segment-map.o \ compat/mimalloc/stats.o