summaryrefslogtreecommitdiffstats
path: root/compiler-rt
diff options
context:
space:
mode:
authorMike Aizatsky <aizatsky@chromium.org>2015-11-11 02:01:16 +0000
committerMike Aizatsky <aizatsky@chromium.org>2015-11-11 02:01:16 +0000
commita543f77bdb6db7f7caa9a853843d5f141ff50a05 (patch)
treecd3d72843f9889d1db4b1f78ada701249ddb44a1 /compiler-rt
parent42b10572443e3f3f3c4a113f88ad4e9b504df900 (diff)
downloadbcm5719-llvm-a543f77bdb6db7f7caa9a853843d5f141ff50a05.tar.gz
bcm5719-llvm-a543f77bdb6db7f7caa9a853843d5f141ff50a05.zip
Disabling sancov.cc on windows.
It can't be built due to cxxabi missing. Will fix later. Differential Revision: http://reviews.llvm.org/D14559 llvm-svn: 252689
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/lib/sanitizer_common/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler-rt/lib/sanitizer_common/CMakeLists.txt b/compiler-rt/lib/sanitizer_common/CMakeLists.txt
index 345362981af..7e849c6270d 100644
--- a/compiler-rt/lib/sanitizer_common/CMakeLists.txt
+++ b/compiler-rt/lib/sanitizer_common/CMakeLists.txt
@@ -157,5 +157,7 @@ if(COMPILER_RT_INCLUDE_TESTS)
add_subdirectory(tests)
endif()
-add_llvm_tool(sancov sancov.cc)
-target_link_libraries(sancov LLVMSupport LLVMSymbolize LLVMObject LLVMDebugInfoDWARF LLVMDebugInfoPDB)
+if (!MSVC)
+ add_llvm_tool(sancov sancov.cc)
+ target_link_libraries(sancov LLVMSupport LLVMSymbolize LLVMObject LLVMDebugInfoDWARF LLVMDebugInfoPDB)
+endif()
OpenPOWER on IntegriCloud