This install command is used to install all the python modules and
python bindings. Currently the only way to install it is this:
cmake -P build/tools/lldb/tools/scripts/cmake_install.cmake
However with my change you should be able to add "lldb-python-bindings" to
LLVM_DISTRIBUTION_COMPONENTS and invoke ninja install-distribution.
Alternatively, you can do something like
`cmake -DCMAKE_INSTALL_COMPONENT="lldb-python-modules" -P
build/cmake_install.cmake` yourself.
Details
Details
Diff Detail
Diff Detail
- Build Status
Buildable 20074 Build 20074: arc lint + arc unit
Event Timeline
Comment Actions
The install- target is created by add_llvm_install_targets, not by the component. The component is part of CMake itself, and is controlled by the CMAKE_INSTALL_DEFAULT_COMPONENT_NAME.