From 42009c2d1eefaebf63b5d860b3cc3366537ee838 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 30 Jan 2024 11:33:10 +0100 Subject: [PATCH] Fix typo --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ef124e2a..69f145a6e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -247,7 +247,7 @@ else() elseif(WANT_SANITIZER STREQUAL THREAD) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread -fno-omit-frame-pointer") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=thread -fno-omit-frame-pointer") - set(CMAKE_STATUS_DEBUG_SUPPORT "Yes, with memory sanitizer") + set(CMAKE_STATUS_DEBUG_SUPPORT "Yes, with thread sanitizer") elseif(NOT WANT_SANITIZER STREQUAL OFF) message(FATAL_ERROR "Invalid sanitizer ${WANT_SANITIZER}. Available sanitizers: address, memory, thread") endif()