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 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
