[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:44 PST 2025


================
@@ -40,7 +47,13 @@ ProcessLaunchInfo::ProcessLaunchInfo(const FileSpec &stdin_file_spec,
                                      const FileSpec &working_directory,
                                      uint32_t launch_flags)
     : ProcessInfo(), m_working_dir(), m_plugin_name(), m_flags(launch_flags),
-      m_file_actions(), m_pty(new PseudoTerminal) {
+      m_file_actions() {
+#ifdef _WIN32
+  m_pty = std::make_shared<PseudoConsole>();
+#else
+  m_pty = std::make_shared<PseudoTerminal>();
+#endif
----------------
charles-zablit wrote:

Fixed, thanks

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


More information about the lldb-commits mailing list