llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Charles Zablit (charles-zablit) <details> <summary>Changes</summary> lldb fails to build when `LLDB_PYTHON_DLL_RELATIVE_PATH` is set because of a missing include. --- Full diff: https://github.com/llvm/llvm-project/pull/204628.diff 1 Files Affected: - (modified) lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp (+1) ``````````diff diff --git a/lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp b/lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp index 08eebbe0346f4..360a90ea81599 100644 --- a/lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp +++ b/lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp @@ -17,6 +17,7 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/ConvertUTF.h" +#include "llvm/Support/FileSystem.h" #include "llvm/Support/Path.h" #include "llvm/Support/Windows/WindowsSupport.h" `````````` </details> https://github.com/llvm/llvm-project/pull/204628 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
