Skip to content

Commit

Permalink
Merge pull request #14087 from fwcd/fix-versionstore-arm64
Browse files Browse the repository at this point in the history
VersionStore: Fix ARM64 platform string
  • Loading branch information
Swiftb0y authored Dec 30, 2024
2 parents 2704380 + ef67cc7 commit 22b9eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/versionstore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ QString VersionStore::applicationName() {
#elif defined(IA64)
#define PLATFORM_STR "IA64"
#elif defined(__aarch64__)
#define PLATFORM_STR "IA64"
#define PLATFORM_STR "ARM64"
#elif defined(__arm__) || defined(__thumb__) || defined(_ARM) || \
defined(_M_ARM) || defined(_M_ARMT) || defined(__arm)
#define PLATFORM_STR "ARM"
Expand Down

0 comments on commit 22b9eec

Please sign in to comment.