From 3f72f704b2f16bf75fb8efe931e76f142abbc04e Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 10 Dec 2023 13:24:34 +0100 Subject: [PATCH] Fix linux arm 64bit detection Signed-off-by: falkTX --- modules/juce_core/system/juce_TargetPlatform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/system/juce_TargetPlatform.h b/modules/juce_core/system/juce_TargetPlatform.h index 6b41688b2d..430193f7f5 100644 --- a/modules/juce_core/system/juce_TargetPlatform.h +++ b/modules/juce_core/system/juce_TargetPlatform.h @@ -169,7 +169,7 @@ #define JUCE_BIG_ENDIAN 1 #endif - #if defined (__LP64__) || defined (_LP64) || defined (__arm64__) + #if defined (__LP64__) || defined (_LP64) || defined (__arm64__) || defined (__aarch64__) #define JUCE_64BIT 1 #else #define JUCE_32BIT 1