https://github.com/mgorny created https://github.com/llvm/llvm-project/pull/187848
Regression introduced in 39d6bb21804d21abe2fa0ec019919d72104827ac. From f3c9907fedd4aa8a16298364a5c770bcb836e1d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <[email protected]> Date: Sat, 21 Mar 2026 09:47:42 +0100 Subject: [PATCH] [lldb] Fix LLVMSupportHTTP linkage against libLLVM MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regression introduced in 39d6bb21804d21abe2fa0ec019919d72104827ac. Signed-off-by: Michał Górny <[email protected]> --- lldb/source/Plugins/SymbolLocator/SymStore/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lldb/source/Plugins/SymbolLocator/SymStore/CMakeLists.txt b/lldb/source/Plugins/SymbolLocator/SymStore/CMakeLists.txt index 775e0284cd8af..118b91f39cfe2 100644 --- a/lldb/source/Plugins/SymbolLocator/SymStore/CMakeLists.txt +++ b/lldb/source/Plugins/SymbolLocator/SymStore/CMakeLists.txt @@ -13,7 +13,9 @@ add_lldb_library(lldbPluginSymbolLocatorSymStore PLUGIN lldbCore lldbHost lldbSymbol - LLVMSupportHTTP + + LINK_COMPONENTS + SupportHTTP ) add_dependencies(lldbPluginSymbolLocatorSymStore _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
