https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/180976
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. >From b9d85731e785be2ef511b0485b798e9cc2b05fa5 Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Wed, 11 Feb 2026 16:55:31 +0000 Subject: [PATCH] [lldb][windows] fix link issue on MinGW --- lldb/source/Host/windows/PythonPathSetup/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) 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) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
