Skip to content
Snippets Groups Projects
Commit 08e93295 authored by Tobias Nätterlund's avatar Tobias Nätterlund Committed by hjk
Browse files

Fixed detection of QNX gdb for NDK 2.0


Change-Id: Ibf62cd0812eb113bec1ff49dec6d0017f57ccabf
Reviewed-by: default avatarNicolas Arnaud-Cormos <nicolas@kdab.com>
Reviewed-by: default avatarhjk <qthjk@ovi.com>
parent 0f073e4a
No related branches found
No related tags found
No related merge requests found
......@@ -433,7 +433,7 @@ void extractGdbVersion(const QString &msg,
}
*isMacGdb = msg.contains(QLatin1String("Apple version"));
*isQnxGdb = msg.contains(QLatin1String("qnx-nto"));
*isQnxGdb = msg.contains(QLatin1String("qnx"));
*gdbVersion = 10000 * cleaned.section(dot, 0, 0).toInt()
+ 100 * cleaned.section(dot, 1, 1).toInt()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment