forked from qt-creator/qt-creator
QNX: Fix mkspec name
Starting with Qt 5.3.0 the mkspec was renamed to "qnx-armle-v7-qcc". Change-Id: I977c4666ce13cb2f1fb70497a7697b96f64780e0 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
committed by
BogDan Vatra
parent
70d3fd8271
commit
987d6aedbf
@@ -330,10 +330,15 @@ Kit *QnxConfiguration::createKit(QnxArchitecture arch,
|
||||
if (arch == X86) {
|
||||
QmakeProjectManager::QmakeKitInformation::setMkspec(
|
||||
kit, FileName::fromLatin1("qnx-x86-qcc"));
|
||||
} else {
|
||||
if (qnxQt->qtVersion() >= QtVersionNumber(5, 3, 0)) {
|
||||
QmakeProjectManager::QmakeKitInformation::setMkspec(
|
||||
kit, FileName::fromLatin1("qnx-armle-v7-qcc"));
|
||||
} else {
|
||||
QmakeProjectManager::QmakeKitInformation::setMkspec(
|
||||
kit, FileName::fromLatin1("qnx-armv7le-qcc"));
|
||||
}
|
||||
}
|
||||
|
||||
DeviceTypeKitInformation::setDeviceTypeId(kit, Constants::QNX_QNX_OS_TYPE);
|
||||
// TODO: Add sysroot?
|
||||
|
||||
Reference in New Issue
Block a user