Utils: Add detection "aarch64"

Change-Id: I493afbd30a10fc027239022826bc5cb09424851d
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Marcus Tillmanns
2024-06-20 12:41:14 +02:00
parent a1a6ccbf1c
commit 366aaf5f78

View File

@@ -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;
}