From b8db7e5e740103b4edb964cc31bea7998e491f6a Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Fri, 6 Dec 2024 14:50:21 +0100 Subject: [PATCH] update(cmake): bump jemalloc asan warning message Co-authored-by: Samuel Gaist Signed-off-by: Federico Di Pierro --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5aafd3bb4a7..a28d0b62a3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -144,7 +144,7 @@ include(ExternalProject) if(USE_JEMALLOC) if(USE_ASAN) - message(WARNING "Jemalloc and ASAN do not play well together") + message(WARNING "Jemalloc and ASAN are known to have issues when combined") endif() include(jemalloc) endif()