[Lldb-commits] [lldb] [lldb] [Windows] Add missing includes (PR #186449)
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Fri Mar 13 09:50:55 PDT 2026
https://github.com/mstorsjo created https://github.com/llvm/llvm-project/pull/186449
This fixes building with libstdc++ after
796a1ea79f413673cbce8ab8975c748f1dbcdc3f.
>From 3103d4e362a3df0bac74d87370ebe3a1472e7010 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin at martin.st>
Date: Fri, 13 Mar 2026 18:49:18 +0200
Subject: [PATCH] [lldb] [Windows] Add missing includes
This fixes building with libstdc++ after
796a1ea79f413673cbce8ab8975c748f1dbcdc3f.
---
lldb/include/lldb/Host/windows/PseudoConsole.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/lldb/include/lldb/Host/windows/PseudoConsole.h b/lldb/include/lldb/Host/windows/PseudoConsole.h
index a1967fc85188c..3ffc8477e501b 100644
--- a/lldb/include/lldb/Host/windows/PseudoConsole.h
+++ b/lldb/include/lldb/Host/windows/PseudoConsole.h
@@ -12,6 +12,8 @@
#include "llvm/Support/Error.h"
#include <mutex>
#include <string>
+#include <condition_variable>
+#include <atomic>
#define PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE 0x20016
typedef void *HANDLE;
More information about the lldb-commits
mailing list