summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Granitz <stefan.graenitz@gmail.com>2019-01-11 21:59:58 +0000
committerStefan Granitz <stefan.graenitz@gmail.com>2019-01-11 21:59:58 +0000
commitba6006c176b17ebabba74b9a0928a5f44be097d4 (patch)
tree5409321a767402277dde4d30de7689e5da976aa7
parent01e9306349ebc1146db6801fff0643d707c2212a (diff)
downloadcompiler-rt-ba6006c176b17ebabba74b9a0928a5f44be097d4.tar.gz
[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. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@350973 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CMakeLists.txt2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 554ba5fa0..2e239d54e 100644
--- a/test/CMakeLists.txt
+++ b/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()