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

Saleem Abdulrasool via lldb-commits lldb-commits at lists.llvm.org
Tue Dec 16 12:48:09 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
----------------
compnerd wrote:

This can then be done uniformly as well.

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


More information about the lldb-commits mailing list