Author: Charles Zablit Date: 2026-06-18T17:56:46+01:00 New Revision: 8c6409765283993193ae63e3685858886a69f952
URL: https://github.com/llvm/llvm-project/commit/8c6409765283993193ae63e3685858886a69f952 DIFF: https://github.com/llvm/llvm-project/commit/8c6409765283993193ae63e3685858886a69f952.diff LOG: [lldb][Windows] fix missing include (#204628) lldb fails to build when `LLDB_PYTHON_DLL_RELATIVE_PATH` is set because of a missing include. Added: Modified: lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp Removed: ################################################################################ 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" _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
