summaryrefslogtreecommitdiff
path: root/compiler-rt
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
commit84b8ab887ca6ae794cb95247f524d0a9115f49d1 (patch)
treecf8397ff71819c8533e567173c379124feca4927 /compiler-rt
parent3e9c0ac25500aaef3fc5d079fbbcf6408947abb5 (diff)
[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.
Diffstat (limited to 'compiler-rt')
-rw-r--r--compiler-rt/test/CMakeLists.txt2
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()