[PATCH] D14559: Disabling sancov.cc on windows.

Mike Aizatsky via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 10 18:03:48 PST 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL252689: Disabling sancov.cc on windows. (authored by aizatsky).

Changed prior to commit:
  http://reviews.llvm.org/D14559?vs=39877&id=39878#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D14559

Files:
  compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt

Index: compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt
+++ compiler-rt/trunk/lib/sanitizer_common/CMakeLists.txt
@@ -157,5 +157,7 @@
   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()


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14559.39878.patch
Type: text/x-patch
Size: 602 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151111/e8932ecc/attachment.bin>


More information about the llvm-commits mailing list