forked from OSchip/llvm-project
Don't make check-sanitizer depend on profile on Windows
We don't build the profiling library on Windows, so CMake warns that the target doesn't exist. llvm-svn: 222588
This commit is contained in:
parent
02b13a8d9b
commit
04748b98a6
|
@ -14,7 +14,10 @@ if(NOT ANDROID)
|
|||
# Use LLVM utils and Clang from the same build tree.
|
||||
list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS
|
||||
clang clang-headers FileCheck count not llvm-nm llvm-symbolizer
|
||||
compiler-rt-headers profile)
|
||||
compiler-rt-headers)
|
||||
if (COMPILER_RT_HAS_PROFILE)
|
||||
list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS profile)
|
||||
endif()
|
||||
endif()
|
||||
if(UNIX)
|
||||
list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS SanitizerLintCheck)
|
||||
|
|
Loading…
Reference in New Issue