[Lldb-commits] [lldb] [llvm] [lldb][windows] add Windows Virtual Console support (PR #168729)

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 17 07:35:34 PST 2025


================
@@ -136,7 +148,11 @@ class ProcessLaunchInfo : public ProcessInfo {
   FileSpec m_shell;
   Flags m_flags; // Bitwise OR of bits from lldb::LaunchFlags
   std::vector<FileAction> m_file_actions; // File actions for any other files
+#ifdef _WIN32
+  std::shared_ptr<PseudoConsole> m_pty;
+#else
   std::shared_ptr<PseudoTerminal> m_pty;
+#endif
----------------
charles-zablit wrote:

Fixed, thanks

https://github.com/llvm/llvm-project/pull/168729


More information about the lldb-commits mailing list