From 9193c5fcf750b61cced60178e57dc048d1d6c26d Mon Sep 17 00:00:00 2001 From: xige-16 Date: Fri, 26 May 2023 18:33:27 +0800 Subject: [PATCH] Build jemalloc without profile (#24447) Signed-off-by: xige-16 --- internal/core/thirdparty/jemalloc/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/core/thirdparty/jemalloc/CMakeLists.txt b/internal/core/thirdparty/jemalloc/CMakeLists.txt index a31333c57..73d369adb 100644 --- a/internal/core/thirdparty/jemalloc/CMakeLists.txt +++ b/internal/core/thirdparty/jemalloc/CMakeLists.txt @@ -46,8 +46,7 @@ endif () list(APPEND JEMALLOC_CONFIGURE_COMMAND "--prefix=${JEMALLOC_PREFIX}" - "--libdir=${JEMALLOC_LIB_DIR}" - "--enable-prof") + "--libdir=${JEMALLOC_LIB_DIR}") if (CMAKE_BUILD_TYPE EQUAL "DEBUG") # Enable jemalloc debug checks when Milvus itself has debugging enabled list(APPEND JEMALLOC_CONFIGURE_COMMAND "--enable-debug") -- GitLab