[Lldb-commits] [lldb] [lldb] fix the install-lldb target (PR #196070)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Wed May 6 10:01:23 PDT 2026
charles-zablit wrote:
Ran this at desk on macOS:
# With the fix:
```
ninja -C llvm-build/release -t query tools/lldb/tools/driver/install-lldb
tools/lldb/tools/driver/install-lldb:
input: phony
tools/lldb/tools/driver/CMakeFiles/install-lldb
bin/lldb
tools/lldb/install-lldb-python-scripts
tools/lldb/source/API/install-liblldb
outputs:
install-lldb
```
# Without:
```
ninja -C llvm-build/release -t query tools/lldb/tools/driver/install-lldb
tools/lldb/tools/driver/install-lldb:
input: phony
tools/lldb/tools/driver/CMakeFiles/install-lldb
bin/lldb
outputs:
install-lldb
```
Before the fix, we were not depending on `install-liblldb`, which is wrong.
https://github.com/llvm/llvm-project/pull/196070
More information about the lldb-commits
mailing list