Debugger: Fix dumper format choosing with GDB

... and further unify GDB and LLDB code paths.

Change-Id: Id89f3804c53190c4888082891fd3c3c55eceac84
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-03-18 16:48:57 +01:00
parent 13d425b972
commit e8f8aaa263
7 changed files with 34 additions and 20 deletions

View File

@@ -303,7 +303,7 @@ void LldbEngine::setupInferior()
runCommand(cmd);
}
DebuggerCommand cmd1("loadDumperFiles");
DebuggerCommand cmd1("loadDumpers");
runCommand(cmd1);
}
@@ -1160,6 +1160,12 @@ void LldbEngine::reloadRegisters()
runCommand("reportRegisters");
}
void LldbEngine::reloadDebuggingHelpers()
{
runCommand("reloadDumpers");
updateAll();
}
void LldbEngine::fetchDisassembler(DisassemblerAgent *agent)
{
QPointer<DisassemblerAgent> p(agent);