https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/204628
lldb fails to build when `LLDB_PYTHON_DLL_RELATIVE_PATH` is set because of a missing include. >From e7e89108fd3faef64708f276e4a6cc92c971b4fc Mon Sep 17 00:00:00 2001 From: Charles Zablit <[email protected]> Date: Thu, 18 Jun 2026 17:02:43 +0100 Subject: [PATCH] [lldb][Windows] fix missing include --- lldb/source/Host/windows/PythonRuntimeLoaderWindows.cpp | 1 + 1 file changed, 1 insertion(+) 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
