Browse Source

Fix linux arm 64bit detection

Signed-off-by: falkTX <falktx@falktx.com>
v6.0.8-distrho
falkTX 1 year ago
parent
commit
3f72f704b2
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/system/juce_TargetPlatform.h

+ 1
- 1
modules/juce_core/system/juce_TargetPlatform.h View File

@@ -169,7 +169,7 @@
#define JUCE_BIG_ENDIAN 1 #define JUCE_BIG_ENDIAN 1
#endif #endif
#if defined (__LP64__) || defined (_LP64) || defined (__arm64__)
#if defined (__LP64__) || defined (_LP64) || defined (__arm64__) || defined (__aarch64__)
#define JUCE_64BIT 1 #define JUCE_64BIT 1
#else #else
#define JUCE_32BIT 1 #define JUCE_32BIT 1


Loading…
Cancel
Save