From a53db34b9bbdf5ff055fe41ae2a8689f01c96fa2 Mon Sep 17 00:00:00 2001 From: Mineplay Date: Thu, 16 Oct 2025 11:48:44 -0500 Subject: [PATCH] fix(android build): added missing flag check for neon --- Include/Hallocy/Utils/Simd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/Hallocy/Utils/Simd.h b/Include/Hallocy/Utils/Simd.h index ea6cae0..9ce07bb 100644 --- a/Include/Hallocy/Utils/Simd.h +++ b/Include/Hallocy/Utils/Simd.h @@ -32,7 +32,7 @@ #elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) #define LIN_SIMD #include -#elif defined(__GNUC__) && defined(__ARM_NEON__) +#elif defined(__GNUC__) && (defined(__ARM_NEON__) || defined(__aarch64__)) #define LIN_NEON #include #else