File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ option(WITH_ASAN "Build with Address Sanitizer" OFF)
20
20
# - it requires all dependencies to be compiled with msan enabled (see
21
21
# https://github.com/google/sanitizers/wiki/MemorySanitizerLibcxxHowTo);
22
22
# - AppleClang doesn't support it.
23
- option (WITH_TSAN "Build with Thread Sanitizer (mutually exculsive with other sanitizers)" OFF )
23
+ option (WITH_TSAN "Build with Thread Sanitizer (mutually exclusive with other sanitizers)" OFF )
24
24
option (WITH_UBSAN "Build with Undefined Behavior sanitizer" OFF )
25
25
26
26
macro (add_to_compile_and_link_flags flag )
@@ -38,7 +38,7 @@ if(CXX_CLANG OR CXX_GNU)
38
38
39
39
if (WITH_TSAN )
40
40
if (WITH_ASAN OR WITH_UBSAN )
41
- message (FATAL_ERROR "Cannot combine TSan with other santizers " )
41
+ message (FATAL_ERROR "Cannot combine TSan with other sanitizers " )
42
42
endif ()
43
43
add_to_compile_and_link_flags ("-fsanitize=thread" )
44
44
endif ()
You can’t perform that action at this time.
0 commit comments