diff options
| author | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-01-11 21:59:58 +0000 | 
|---|---|---|
| committer | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-01-11 21:59:58 +0000 | 
| commit | 8c026e44cfa1197496df09bae6d9622805ccdd10 (patch) | |
| tree | a55d45275603125facf1b6480e6747fafe2e18e1 | |
| parent | e49576014077d4080f51a56799fca0bdf9dbb522 (diff) | |
| download | bcm5719-llvm-8c026e44cfa1197496df09bae6d9622805ccdd10.tar.gz bcm5719-llvm-8c026e44cfa1197496df09bae6d9622805ccdd10.zip  | |
[CMake] Fix standalone build after LLVM exports utility targets
LLVM started exporting targets for utilites with https://reviews.llvm.org/rL350959, which broke compiler-rt standalone builds because it was used to define FileCheck manually.
Changed this, so FileCheck gets imported now.
llvm-svn: 350973
| -rw-r--r-- | compiler-rt/test/CMakeLists.txt | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler-rt/test/CMakeLists.txt b/compiler-rt/test/CMakeLists.txt index 554ba5fa0f0..2e239d54e29 100644 --- a/compiler-rt/test/CMakeLists.txt +++ b/compiler-rt/test/CMakeLists.txt @@ -15,8 +15,6 @@ if(COMPILER_RT_BUILD_PROFILE AND COMPILER_RT_HAS_PROFILE)  endif()  if(COMPILER_RT_STANDALONE_BUILD) -  add_executable(FileCheck IMPORTED GLOBAL) -  set_property(TARGET FileCheck PROPERTY IMPORTED_LOCATION ${LLVM_TOOLS_BINARY_DIR}/FileCheck)    list(APPEND SANITIZER_COMMON_LIT_TEST_DEPS FileCheck)  endif()  | 

