forked from qt-creator/qt-creator
Utils: Add detection "aarch64"
Change-Id: I493afbd30a10fc027239022826bc5cb09424851d Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -57,7 +57,7 @@ inline OsArch osArchFromString(const QString &architecture)
|
||||
return OsArchItanium;
|
||||
if (architecture == QLatin1String("arm"))
|
||||
return OsArchArm;
|
||||
if (architecture == QLatin1String("arm64"))
|
||||
if (architecture == QLatin1String("arm64") || architecture == QLatin1String("aarch64"))
|
||||
return OsArchArm64;
|
||||
return OsArchUnknown;
|
||||
}
|
||||
|
Reference in New Issue
Block a user