[Lldb-commits] [lldb] [lldb][windows] add STDIN and STDOUT forwarding support (PR #175812)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Fri Jan 23 04:28:00 PST 2026
================
@@ -118,6 +119,11 @@ llvm::Error PseudoConsole::OpenPseudoConsole() {
m_conpty_output = hOutputRead;
m_conpty_input = hInputWrite;
+ if (auto error = DrainInitSequences()) {
+ Log *log = GetLog(LLDBLog::Host);
+ LLDB_LOG(log, "error: {0}", error);
----------------
charles-zablit wrote:
Fixed, thanks 👍
https://github.com/llvm/llvm-project/pull/175812
More information about the lldb-commits
mailing list