From 663612dfd8f63e82936f32755fbba2aa219a7ae0 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 16 Jun 2022 15:17:03 -0700 Subject: [PATCH] [lldb] Remove references to epydoc from the documentation We no longer rely on epydoc but instead use a sphinx plugin to generate the Python API reference. --- lldb/docs/resources/build.rst | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lldb/docs/resources/build.rst b/lldb/docs/resources/build.rst index 5e67955..c44bdee 100644 --- a/lldb/docs/resources/build.rst +++ b/lldb/docs/resources/build.rst @@ -391,10 +391,9 @@ Building the Documentation If you wish to build the optional (reference) documentation, additional dependencies are required: -* Sphinx (for the website) +* Sphinx (for the website and the Python API reference) * Graphviz (for the 'dot' tool) * doxygen (if you wish to build the C++ API reference) -* epydoc (if you wish to build the Python API reference) To install the prerequisites for building the documentation (on Debian/Ubuntu) do: @@ -402,7 +401,6 @@ do: :: $ sudo apt-get install doxygen graphviz python3-sphinx - $ sudo pip install epydoc To build the documentation, configure with ``LLVM_ENABLE_SPHINX=ON`` and build the desired target(s). @@ -411,7 +409,6 @@ To build the documentation, configure with ``LLVM_ENABLE_SPHINX=ON`` and build t $ ninja docs-lldb-html $ ninja docs-lldb-man $ ninja lldb-cpp-doc - $ ninja lldb-python-doc Cross-compiling LLDB -------------------- -- 2.7.4