[PATCH] D47355: [CMake] Allow specifying extra dependencies of bootstrap stage
Petr Hosek via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 11 14:03:50 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL334437: [CMake] Allow specifying extra dependencies of bootstrap stage (authored by phosek, committed by ).
Herald added a subscriber: llvm-commits.
Changed prior to commit:
https://reviews.llvm.org/D47355?vs=150838&id=150839#toc
Repository:
rL LLVM
https://reviews.llvm.org/D47355
Files:
cfe/trunk/CMakeLists.txt
Index: cfe/trunk/CMakeLists.txt
===================================================================
--- cfe/trunk/CMakeLists.txt
+++ cfe/trunk/CMakeLists.txt
@@ -583,6 +583,10 @@
endif()
endif()
+ if(CLANG_BOOTSTRAP_EXTRA_DEPS)
+ add_dependencies(clang-bootstrap-deps ${CLANG_BOOTSTRAP_EXTRA_DEPS})
+ endif()
+
add_custom_target(${NEXT_CLANG_STAGE}-clear
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${NEXT_CLANG_STAGE}-cleared
)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47355.150839.patch
Type: text/x-patch
Size: 449 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180611/1037e781/attachment-0001.bin>
More information about the cfe-commits
mailing list