Debugger: Restrict use of system GDB pretty printer to version 7.4

Reduce compatibility issues e.g. on Mac. The previous versions
are not working well anyway.

Change-Id: If6cc7c1d4a85300d9bf054966216b52b35c0d1f2
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
hjk
2013-05-26 15:25:41 +02:00
parent e835b57fc2
commit 0a9665077a

View File

@@ -1592,7 +1592,7 @@ void GdbEngine::handleStop1(const GdbMi &data)
if (!m_systemDumpersLoaded) {
m_systemDumpersLoaded = true;
if (debuggerCore()->boolSetting(LoadGdbDumpers))
if (m_gdbVersion >= 70400 && debuggerCore()->boolSetting(LoadGdbDumpers))
postCommand("importPlainDumpers");
}