SetupThreadSanitizer.cmake 443 Bytes
Newer Older
1 2 3 4 5 6 7
# Optionally compile with thread sanitizer enabled to find concurrency bugs
# https://github.com/google/sanitizers/wiki/ThreadSanitizerCppManual

# Add optional sanitizer, off by default
option(THREAD_SANITIZER "Add thread sanitizer" OFF)
if(THREAD_SANITIZER)
    add_compile_options(-fsanitize=thread -g)
8
    set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=thread")
9 10
endif()
message("-- Thread Sanitizer: ${THREAD_SANITIZER}")