diff options
author | hjk <[email protected]> | 2010-07-21 12:04:20 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2010-07-21 12:07:49 +0200 |
commit | f2922549675def0b2ba96ec44b912fb7f7dcf349 (patch) | |
tree | d12b258d769bf170b2e34dc3a93e6693e607b2cd /src/plugins/debugger/debuggerrunner.cpp | |
parent | 3b64a6ccbf35b37911450c01ab544cd7f601db36 (diff) |
debugger: attempt to re-try examining dumper location after build.
Still does not work as the location itself is unknown.
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerrunner.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp index fb49cba4f8d..6ce74e6f977 100644 --- a/src/plugins/debugger/debuggerrunner.cpp +++ b/src/plugins/debugger/debuggerrunner.cpp @@ -145,6 +145,10 @@ static DebuggerStartParameters localStartParameters(RunConfiguration *runConfigu sp.useTerminal = rc->runMode() == LocalApplicationRunConfiguration::Console; sp.dumperLibrary = rc->dumperLibrary(); sp.dumperLibraryLocations = rc->dumperLibraryLocations(); + // FIXME: If it's not yet build this will be empty and not filled + // when rebuild as the runConfiguration is not stored and therefore + // cannot be used to retrieve the dumper location. + //qDebug() << "DUMPER: " << sp.dumperLibrary << sp.dumperLibraryLocations; sp.displayName = rc->displayName(); // Find qtInstallPath. @@ -171,7 +175,8 @@ RunControl *DebuggerRunControlFactory::create return create(sp, runConfiguration); } -DebuggerRunControl *DebuggerRunControlFactory::create(const DebuggerStartParameters &sp, +DebuggerRunControl *DebuggerRunControlFactory::create( + const DebuggerStartParameters &sp, RunConfiguration *runConfiguration) { DebuggerRunControl *runControl = |