We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4682407 commit c099f04Copy full SHA for c099f04
lldb/tools/lldb-dap/Handler/ConfigurationDoneRequestHandler.cpp
@@ -40,6 +40,11 @@ ConfigurationDoneRequestHandler::Run(const ConfigurationDoneArguments &) const {
40
"any debugger command scripts are not resuming the process during the "
41
"launch sequence.");
42
43
+ // Waiting until 'configurationDone' to send target based capabilities in case
44
+ // the launch or attach scripts adjust the target. The initial dummy target
45
+ // may have different capabilities than the final target.
46
+ SendTargetBasedCapabilities(dap);
47
+
48
// Clients can request a baseline of currently existing threads after
49
// we acknowledge the configurationDone request.
50
// Client requests the baseline of currently existing threads after
0 commit comments