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

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 11 17:48:50 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rLLDB355887: [CMake] Avoid clang-tablegen-targets dependency when building sphinx docs… (authored by JDevlieghere, committed by ).
Herald added a project: LLDB.

Changed prior to commit:
  https://reviews.llvm.org/D59232?vs=190167&id=190191#toc

Repository:
  rLLDB LLDB

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D59232/new/

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.190191.patch
Type: text/x-patch
Size: 557 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190312/b7476519/attachment.bin>


More information about the lldb-commits mailing list