[PATCH] D133475: [docs] Fix build-docs.sh

Tobias Hieta via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 8 00:20:23 PDT 2022


thieta created this revision.
thieta added reviewers: ldionne, hans.
Herald added a project: All.
thieta requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

If libcxxabi is not included CMake will error out:

Cannot find target libcxxabi-SHARED

I ran into this doing the 15.0.0 release


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D133475

Files:
  llvm/utils/release/build-docs.sh


Index: llvm/utils/release/build-docs.sh
===================================================================
--- llvm/utils/release/build-docs.sh
+++ llvm/utils/release/build-docs.sh
@@ -113,7 +113,7 @@
                doxygen-polly
 
 cmake -G Ninja $srcdir/../runtimes -B $builddir/runtimes-doc \
-               -DLLVM_ENABLE_RUNTIMES="libcxx" \
+               -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi;libunwind" \
                -DLLVM_ENABLE_SPHINX=ON \
                -DSPHINX_WARNINGS_AS_ERRORS=OFF
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D133475.458668.patch
Type: text/x-patch
Size: 510 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220908/37286281/attachment.bin>


More information about the llvm-commits mailing list