From 3ecfcdfe7b2420aa720f1973e25c6635cc8a5c0d Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Fri, 26 Apr 2024 15:45:25 +0300 Subject: [PATCH] Remove outdated comment about broken -fsanitize-ignorelist See: https://github.com/ClickHouse/ClickHouse/pull/49829#issuecomment-1546704055 Signed-off-by: Azat Khuzhin --- cmake/sanitize.cmake | 3 --- 1 file changed, 3 deletions(-) diff --git a/cmake/sanitize.cmake b/cmake/sanitize.cmake index 9d53b2004b4..a3523203912 100644 --- a/cmake/sanitize.cmake +++ b/cmake/sanitize.cmake @@ -8,9 +8,6 @@ option (SANITIZE "Enable one of the code sanitizers" "") set (SAN_FLAGS "${SAN_FLAGS} -g -fno-omit-frame-pointer -DSANITIZER") -# It's possible to pass an ignore list to sanitizers (-fsanitize-ignorelist). Intentionally not doing this because -# 1. out-of-source suppressions are awkward 2. it seems ignore lists don't work after the Clang v16 upgrade (#49829) - if (SANITIZE) if (SANITIZE STREQUAL "address") set (ASAN_FLAGS "-fsanitize=address -fsanitize-address-use-after-scope")