[Lldb-commits] [PATCH] D59232: [CMake] Avoid clang-tablegen-targets dependency when building sphinx docs (experimental)

Stefan Gränitz via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 11 15:31:34 PDT 2019


sgraenitz created this revision.
sgraenitz added a reviewer: JDevlieghere.
Herald added a subscriber: mgorny.

Proposal to fix bot http://lab.llvm.org:8011/builders/lldb-sphinx-docs/builds/1564/steps/cmake-configure/logs/stdio


https://reviews.llvm.org/D59232

Files:
  cmake/modules/AddLLDB.cmake


Index: cmake/modules/AddLLDB.cmake
===================================================================
--- cmake/modules/AddLLDB.cmake
+++ cmake/modules/AddLLDB.cmake
@@ -93,7 +93,7 @@
   # Hack: only some LLDB libraries depend on the clang autogenerated headers,
   # but it is simple enough to make all of LLDB depend on some of those
   # headers without negatively impacting much of anything.
-  if(NOT LLDB_BUILT_STANDALONE)
+  if(NOT LLDB_BUILT_STANDALONE AND NOT LLVM_ENABLE_SPHINX)
     add_dependencies(${name} clang-tablegen-targets)
   endif()
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D59232.190167.patch
Type: text/x-patch
Size: 557 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190311/75799f77/attachment.bin>


More information about the lldb-commits mailing list