[Lldb-commits] [lldb] [lldb-dap] Add external terminal support (PR #146950)

Ebuka Ezike via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 7 04:22:23 PDT 2025


================
@@ -23,7 +23,7 @@ namespace lldb_dap {
 /// Launch request; value of command field is 'launch'.
 Error LaunchRequestHandler::Run(const LaunchRequestArguments &arguments) const {
   // Validate that we have a well formed launch request.
-  if (!arguments.launchCommands.empty() && arguments.runInTerminal)
+  if (!arguments.launchCommands.empty() && arguments.terminal)
----------------
da-viper wrote:

```suggestion
  if (!arguments.launchCommands.empty() && arguments.terminal != Protocol::eConsole)
```
explicitly check if it not console.

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


More information about the lldb-commits mailing list