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:
parent
3005b716fe
commit
06325689dd
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue