summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2016-08-18 21:41:21 +0000
committerChris Bieneman <beanz@apple.com>2016-08-18 21:41:21 +0000
commit85a2cffca4d0b1e8359a471199b1fa814b3ef5aa (patch)
treed70929f32182e723c4a17fd78ba4d4d46db50197 /runtimes
parent3ada6da15707b0dc7ead1b89f3efd77cb2f5327b (diff)
[CMake] Make llvm-config implicit dependency for subprojects
The subproject interface being used for runtime libraries expects that llvm-config is passed into the subproject for consumption. We currently do this for every subproject, so we should expect that all LLVM ExternalProjects depend on llvm-config for the time being. Eventually I'd like to see the sub-projects using LLVMConfig.cmake instead of the llvm-config binary, but that will take time to roll out. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt
index 4fe5f0036fc..a155cacb75b 100644
--- a/runtimes/CMakeLists.txt
+++ b/runtimes/CMakeLists.txt
@@ -81,7 +81,7 @@ else() # if this is included from LLVM's CMake
# together in a single CMake invocaiton.
llvm_ExternalProject_Add(runtimes
${CMAKE_CURRENT_SOURCE_DIR}
- DEPENDS ${deps} llvm-config
+ DEPENDS ${deps}
# Builtins were built separately above
CMAKE_ARGS -DCOMPILER_RT_BUILD_BUILTINS=Off
PASSTHROUGH_PREFIXES ${prefixes}