================
@@ -234,6 +234,10 @@ llvm::Error BaseRequestHandler::LaunchProcess(
ScopeSyncMode scope_sync_mode(dap.debugger);
if (arguments.console != protocol::eConsoleInternal) {
+ if (!dap.clientFeatures.contains(eClientFeatureRunInTerminalRequest))
+ return llvm::make_error<DAPError>(
+ R"(Client does not support RunInTerminal. Please set "console":
"integratedConsole" in your launch configuration)");
----------------
ashgti wrote:
```suggestion
R"(Client does not support RunInTerminal. Please set '"console":
"integratedConsole"' in your launch configuration)");
```
https://github.com/llvm/llvm-project/pull/180213
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits