[Lldb-commits] [PATCH] D107446: [lldb] Stop referencing "host_lib" in cmake files
Nico Weber via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Aug 4 04:49:43 PDT 2021
thakis created this revision.
thakis added reviewers: teemperor, JDevlieghere.
thakis added a project: LLDB.
Herald added a subscriber: mgorny.
thakis requested review of this revision.
lldb/tools/driver/CMakeLists.txt used to set host_lib to something until
https://reviews.llvm.org/rG7b968969db and I think CMake file processing
order means this used to be set to something in these two files here too, but
since 2.5 years ago this always expanded to nothing here. So just remove it.
No behavior change.
https://reviews.llvm.org/D107446
Files:
lldb/tools/lldb-test/CMakeLists.txt
lldb/tools/lldb-vscode/CMakeLists.txt
Index: lldb/tools/lldb-vscode/CMakeLists.txt
===================================================================
--- lldb/tools/lldb-vscode/CMakeLists.txt
+++ lldb/tools/lldb-vscode/CMakeLists.txt
@@ -40,7 +40,6 @@
LINK_LIBS
liblldb
- ${host_lib}
${extra_libs}
LINK_COMPONENTS
Index: lldb/tools/lldb-test/CMakeLists.txt
===================================================================
--- lldb/tools/lldb-test/CMakeLists.txt
+++ lldb/tools/lldb-test/CMakeLists.txt
@@ -18,7 +18,6 @@
lldbTarget
lldbUtility
${LLDB_ALL_PLUGINS}
- ${host_lib}
LINK_COMPONENTS
Support
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107446.364051.patch
Type: text/x-patch
Size: 618 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210804/f8269015/attachment-0001.bin>
More information about the lldb-commits
mailing list