[Lldb-commits] [lldb] 3b6ff59 - fix PATH_MAX missing in windows build (#142259)
via lldb-commits
lldb-commits at lists.llvm.org
Sat May 31 01:27:47 PDT 2025
Author: Ely Ronnen
Date: 2025-05-31T10:27:44+02:00
New Revision: 3b6ff59d9b137388fe718a624942f9ff6bbde329
URL: https://github.com/llvm/llvm-project/commit/3b6ff59d9b137388fe718a624942f9ff6bbde329
DIFF: https://github.com/llvm/llvm-project/commit/3b6ff59d9b137388fe718a624942f9ff6bbde329.diff
LOG: fix PATH_MAX missing in windows build (#142259)
Added:
Modified:
lldb/tools/lldb-dap/ProtocolUtils.cpp
Removed:
################################################################################
diff --git a/lldb/tools/lldb-dap/ProtocolUtils.cpp b/lldb/tools/lldb-dap/ProtocolUtils.cpp
index b760a81b73959..4e47c87b73592 100644
--- a/lldb/tools/lldb-dap/ProtocolUtils.cpp
+++ b/lldb/tools/lldb-dap/ProtocolUtils.cpp
@@ -11,6 +11,7 @@
#include "lldb/API/SBDebugger.h"
#include "lldb/API/SBTarget.h"
+#include "lldb/Host/PosixApi.h" // Adds PATH_MAX for windows
namespace lldb_dap {
More information about the lldb-commits
mailing list