Skip to content

Commit 0f12abe

Browse files
authored
[lldb] Building the documentation should not depend on libLLDB (#168962)
The only thing the docs should depend on is on the SWIG wrapper (lldb.py) which only requires parsing the API headers. It should not depend on building libLLDB. The dependency was (I believe accidentally) introduced by 59f4267. Fixes #123316
1 parent 70311b4 commit 0f12abe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/docs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if (LLDB_ENABLE_PYTHON AND SPHINX_FOUND)
3434
COMMAND "${CMAKE_COMMAND}" -E copy "${LLDB_SOURCE_DIR}/examples/python/templates/scripted_thread_plan.py" "${CMAKE_CURRENT_BINARY_DIR}/lldb/plugins/"
3535
COMMENT "Copying lldb.py to pretend its a Python package.")
3636

37-
add_dependencies(lldb-python-doc-package swig_wrapper_python lldb-python)
37+
add_dependencies(lldb-python-doc-package swig_wrapper_python)
3838

3939
# FIXME: Don't treat Sphinx warnings as errors. The files generated by
4040
# automodapi are full of warnings (partly caused by SWIG, our documentation

0 commit comments

Comments
 (0)