[PATCH] D14486: [tsan] Skip building libcxx_tsan on OS X
Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 9 01:56:05 PST 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL252455: [tsan] Skip building libcxx_tsan on OS X (authored by kuba.brecka).
Changed prior to commit:
http://reviews.llvm.org/D14486?vs=39652&id=39672#toc
Repository:
rL LLVM
http://reviews.llvm.org/D14486
Files:
compiler-rt/trunk/test/tsan/CMakeLists.txt
Index: compiler-rt/trunk/test/tsan/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/test/tsan/CMakeLists.txt
+++ compiler-rt/trunk/test/tsan/CMakeLists.txt
@@ -6,7 +6,8 @@
list(APPEND TSAN_TEST_DEPS tsan)
endif()
if(COMPILER_RT_HAS_LIBCXX_SOURCES AND
- COMPILER_RT_TEST_COMPILER_ID STREQUAL "Clang")
+ COMPILER_RT_TEST_COMPILER_ID STREQUAL "Clang"
+ AND NOT APPLE)
list(APPEND TSAN_TEST_DEPS libcxx_tsan)
set(TSAN_HAS_LIBCXX True)
else()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14486.39672.patch
Type: text/x-patch
Size: 512 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151109/fd40a695/attachment.bin>
More information about the llvm-commits
mailing list