Browse Source

Added a test to set up the JUCE_64BIT flag if __arm64__ is set.

tags/2021-05-28
jules 10 years ago
parent
commit
acdb9eb653
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

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


Loading…
Cancel
Save