From 155465b8c691f4a90a12fbdddd45ef3b7c351823 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 19 Dec 2025 18:43:02 +0100 Subject: [PATCH] fix: Linux aarch64 detection in the updater --- main/updater/source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/updater/source/main.cpp b/main/updater/source/main.cpp index 539c49fb5..4b3b495e3 100644 --- a/main/updater/source/main.cpp +++ b/main/updater/source/main.cpp @@ -104,7 +104,7 @@ std::optional downloadUpdate(const std::string &url) { #if defined(__x86_64__) || defined(_X86_) || defined(_AMD64_) #define ARCH_DEPENDENT(x86_64, arm64) x86_64 -#elif defined(__arm64__) || defined(_ARM64_) +#elif defined(__arm64__) || defined(_ARM64_) || defined(__aarch64__) #define ARCH_DEPENDENT(x86_64, arm64) arm64 #else #error "Unsupported architecture for updater"