forked from qt-creator/qt-creator
debugger: streamline classical dumper setup
Remote dumpers are not used anymore, there's also no need to have it in the engine base class anymore. Change-Id: If0b6930b07e468d5973d848e02696bc5da40a197 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -1851,10 +1851,8 @@ void GdbEngine::pythonDumpersFailed()
|
||||
else
|
||||
cmd += "LD_PRELOAD";
|
||||
cmd += ' ';
|
||||
if (sp.startMode == StartRemoteGdb)
|
||||
cmd += sp.remoteDumperLib;
|
||||
else
|
||||
cmd += qtDumperLibraryName().toLocal8Bit();
|
||||
if (sp.startMode != StartRemoteGdb)
|
||||
cmd += sp.dumperLibrary.toLocal8Bit();
|
||||
postCommand(cmd);
|
||||
m_debuggingHelperState = DebuggingHelperLoadTried;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user