Fix TSAN CMake option

The wrong variable was set.
This commit is contained in:
Markus Mäkelä
2020-02-07 08:36:02 +02:00
parent 791d2ade99
commit 0b21544693

View File

@ -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(WITH_JEMALLOC "Use jemalloc as the memory allocator" OFF)
option(INSTALL_EXPERIMENTAL "Install experimental modules" OK) option(INSTALL_EXPERIMENTAL "Install experimental modules" OK)
option(WITH_ASAN "Enable AddressSanitizer" OFF) option(WITH_ASAN "Enable AddressSanitizer" OFF)
option(WITH_ASAN "Enable ThreadSanitizer" OFF) option(WITH_TSAN "Enable ThreadSanitizer" OFF)
# Default package name # Default package name
set(PACKAGE_NAME "maxscale" CACHE STRING "Name of the generated package") set(PACKAGE_NAME "maxscale" CACHE STRING "Name of the generated package")