diff options
author | Chris Bieneman <beanz@apple.com> | 2016-08-18 21:41:21 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-08-18 21:41:21 +0000 |
commit | 85a2cffca4d0b1e8359a471199b1fa814b3ef5aa (patch) | |
tree | d70929f32182e723c4a17fd78ba4d4d46db50197 /runtimes | |
parent | 3ada6da15707b0dc7ead1b89f3efd77cb2f5327b (diff) | |
download | llvm-85a2cffca4d0b1e8359a471199b1fa814b3ef5aa.tar.gz |
[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.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtimes/CMakeLists.txt b/runtimes/CMakeLists.txt index 4fe5f0036fc9..a155cacb75b7 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} |