forked from qt-creator/qt-creator
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:
@@ -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");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user