From 7989230f49b2050957b1446278695b840a65cbda Mon Sep 17 00:00:00 2001 From: Ran Lu Date: Tue, 10 Sep 2024 21:50:15 -0400 Subject: [PATCH] Bump mimalloc to 2.1.7 --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 9080d7b..e700fef 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -55,7 +55,7 @@ RUN savedAptMark="$(apt-mark showmanual)" \ && cmake .. -G Ninja -DCMAKE_INSTALL_PREFIX=${SEG_HOME}/abseil -DABSL_BUILD_TESTING=OFF -DABSL_PROPAGATE_CXX_STD=ON -DCMAKE_BUILD_TYPE=Release \ && cmake --build . --target install -v \ && cd ${SEG_HOME} && rm -rf abseil-cpp \ - && git clone --depth 1 --branch v2.1.2 https://github.com/microsoft/mimalloc.git \ + && git clone --depth 1 --branch v2.1.7 https://github.com/microsoft/mimalloc.git \ && cd mimalloc && mkdir build && cd build \ && cmake .. -G Ninja -DMI_INSTALL_TOPLEVEL=ON -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release \ && cmake --build . --target install -v \