[Lldb-commits] [lldb] [lldb][windows] fix link issue when building with MinGW (PR #180976)
via lldb-commits
lldb-commits at lists.llvm.org
Wed Feb 11 08:58:29 PST 2026
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Charles Zablit (charles-zablit)
<details>
<summary>Changes</summary>
Fix a link issue which was introduced by https://github.com/llvm/llvm-project/pull/179306 when building with MinGW.
LLVMSupport is not needed by `PythonPathSetup`. It's safe to remove it.
---
Full diff: https://github.com/llvm/llvm-project/pull/180976.diff
1 Files Affected:
- (modified) lldb/source/Host/windows/PythonPathSetup/CMakeLists.txt (-3)
``````````diff
diff --git a/lldb/source/Host/windows/PythonPathSetup/CMakeLists.txt b/lldb/source/Host/windows/PythonPathSetup/CMakeLists.txt
index 6b84a7187160b..96f2b482b376f 100644
--- a/lldb/source/Host/windows/PythonPathSetup/CMakeLists.txt
+++ b/lldb/source/Host/windows/PythonPathSetup/CMakeLists.txt
@@ -1,8 +1,5 @@
add_lldb_library(lldbHostPythonPathSetup STATIC
PythonPathSetup.cpp
-
- LINK_LIBS
- LLVMSupport
)
if(DEFINED LLDB_PYTHON_DLL_RELATIVE_PATH)
``````````
</details>
https://github.com/llvm/llvm-project/pull/180976
More information about the lldb-commits
mailing list