From a0740f7e09fad45b9788f69a24889eb201e89a68 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 28 Jan 2014 11:21:57 +0100 Subject: [PATCH] Debugger: Adjust "supported version" message to reality Change-Id: I2288592d917089f9c952c96f77150db0b88b1fce Reviewed-by: hjk --- src/plugins/debugger/gdb/gdbengine.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 708f48df15a..c0bf8ac1725 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -1704,11 +1704,10 @@ void GdbEngine::handleShowVersion(const GdbResponse &response) extractGdbVersion(msg, &m_gdbVersion, &gdbBuildVersion, &isMacGdb, &m_isQnxGdb); - // On Mac, fsf gdb does not work sufficiently well, - // and on Linux and Windows we require at least 7.2. - // Older versions with python still work, but can - // be significantly slower. - bool isSupported = m_gdbVersion >= 70500; + // On Mac, FSF GDB does not work sufficiently well, + // and on Linux and Windows we require at least 7.4.1, + // on Android 7.3.1. + bool isSupported = m_gdbVersion >= 70300; if (isSupported) showMessage(_("SUPPORTED GDB VERSION ") + msg); else