From 0b215446934f0a99f4e68af1628e7d76bf8b83dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Fri, 7 Feb 2020 08:36:02 +0200 Subject: [PATCH] Fix TSAN CMake option The wrong variable was set. --- cmake/defaults.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/defaults.cmake b/cmake/defaults.cmake index e96150f3c..d0213b2c1 100644 --- a/cmake/defaults.cmake +++ b/cmake/defaults.cmake @@ -21,7 +21,7 @@ option(WITH_TCMALLOC "Use tcmalloc as the memory allocator" OFF) option(WITH_JEMALLOC "Use jemalloc as the memory allocator" OFF) option(INSTALL_EXPERIMENTAL "Install experimental modules" OK) option(WITH_ASAN "Enable AddressSanitizer" OFF) -option(WITH_ASAN "Enable ThreadSanitizer" OFF) +option(WITH_TSAN "Enable ThreadSanitizer" OFF) # Default package name set(PACKAGE_NAME "maxscale" CACHE STRING "Name of the generated package")