[Lldb-commits] [PATCH] D51966: Do not create new terminals when launching process on Windows by default
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 12 08:11:41 PDT 2018
clayborg added a comment.
The other option is to only remove this flag if "--no-stdio" is set.
The best solution IMHO is:
- find a way to get stdio from a process and feed to to LLDB so it shows up when neither --tty nor --no-stdio is set
- when --tty is specified, set the CREATE_NEW_CONSOLE bit
- when --no-stdio is specified, don't get stdio from child process and don't set CREATE_NEW_CONSOLE
Repository:
rLLDB LLDB
https://reviews.llvm.org/D51966
More information about the lldb-commits
mailing list