From 4f50aa74d61a2c080905f859fb9154a1ac098c82 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 14 Aug 2015 17:34:27 +0200 Subject: [PATCH] Debugger: Fix use of remote Linux startup with Step Into/Step Over Starting with F11 and F10 should start with break on main. To know about the breakpoint, the RunMode parameter needs to be passed. Change-Id: I3219ee60f187f824476a1a8651e56334da021069 Reviewed-by: Christian Kandeler --- src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp b/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp index 3053e39027f..53c4647f05a 100644 --- a/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp +++ b/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp @@ -106,7 +106,7 @@ RunControl *RemoteLinuxRunControlFactory::create(RunConfiguration *runConfig, Co } DebuggerStartParameters params = LinuxDeviceDebugSupport::startParameters(rc); - DebuggerRunControl * const runControl = createDebuggerRunControl(params, runConfig, errorMessage); + DebuggerRunControl * const runControl = createDebuggerRunControl(params, runConfig, errorMessage, mode); if (!runControl) return 0; LinuxDeviceDebugSupport * const debugSupport =