1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Linux: Fix detection of 64 bit Arm

This commit is contained in:
Tom Poole 2024-10-31 15:23:17 +00:00
parent 3005b716fe
commit 06325689dd

View file

@ -185,7 +185,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