From 224d00a596702ce6440b58715046ab92987d6c12 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 595027c415..b13013fd42 100644 --- a/modules/juce_core/system/juce_TargetPlatform.h +++ b/modules/juce_core/system/juce_TargetPlatform.h @@ -172,7 +172,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