瀏覽代碼

Reenable TSan on macOS as newer Xcode toolchains support it.

master
Mohamed Amin JABRI 8 年之前
父節點
當前提交
b719221996
共有 2 個文件被更改,包括 6 次插入2 次删除
  1. +3
    -0
      .gitignore
  2. +3
    -2
      cmake/FindTSan.cmake

+ 3
- 0
.gitignore 查看文件

@@ -0,0 +1,3 @@
# out-of-source build top-level folders.
build/
_build/

+ 3
- 2
cmake/FindTSan.cmake 查看文件

@@ -39,9 +39,10 @@ endif ()
include(sanitize-helpers)

if (SANITIZE_THREAD)
if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
if (NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND
NOT ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin")
message(WARNING "ThreadSanitizer disabled for target ${TARGET} because "
"ThreadSanitizer is supported for Linux systems only.")
"ThreadSanitizer is supported for Linux systems and macOS only.")
set(SANITIZE_THREAD Off CACHE BOOL
"Enable ThreadSanitizer for sanitized targets." FORCE)
elseif (NOT ${CMAKE_SIZEOF_VOID_P} EQUAL 8)


Loading…
取消
儲存