Skip to content
Snippets Groups Projects
Commit a8ab1fd7 authored by Kai Koehne's avatar Kai Koehne
Browse files

RemoteLinux: Fix QML-only debugging


Make sure requestRemoteSetup is also set if we're not using
the C++ debugger.

Change-Id: I08e151be6c69ce8d0ab8a86414a150f883f09ff1
Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent 1c30b2ae
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,6 @@ DebuggerStartParameters AbstractRemoteLinuxDebugSupport::startParameters(const R
params.executable = runConfig->localExecutableFilePath();
params.debuggerCommand = runConfig->gdbCmd();
params.remoteChannel = devConf->sshParameters().host + QLatin1String(":-1");
params.requestRemoteSetup = true;
// TODO: This functionality should be inside the debugger.
const ProjectExplorer::Abi &abi = runConfig->target()
......@@ -122,6 +121,7 @@ DebuggerStartParameters AbstractRemoteLinuxDebugSupport::startParameters(const R
} else {
params.startMode = AttachToRemoteServer;
}
params.requestRemoteSetup = true;
params.displayName = runConfig->displayName();
if (const ProjectExplorer::Project *project = runConfig->target()->project()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment