From 028159ef6ea0f43c4eaf2314d7d73f92bbc5bd99 Mon Sep 17 00:00:00 2001 From: Chunmei Liu Date: Tue, 21 Jan 2020 23:06:41 -0800 Subject: [PATCH] crimson:disable heap profiler for seastar alien bluestore will link with heap profiler, but seastar not support heap profiler with seastar defaut allocator, so disable it. Signed-off-by: Chunmei Liu --- src/perfglue/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/perfglue/CMakeLists.txt b/src/perfglue/CMakeLists.txt index 11546e98e53..b2cb608da28 100644 --- a/src/perfglue/CMakeLists.txt +++ b/src/perfglue/CMakeLists.txt @@ -1,4 +1,4 @@ -if(ALLOCATOR STREQUAL "tcmalloc") +if(ALLOCATOR STREQUAL "tcmalloc" AND NOT WITH_SEASTAR) add_library(heap_profiler STATIC heap_profiler.cc) target_link_libraries(heap_profiler -- 2.39.5