Browse Source

Fix linux arm 64bit detection

Signed-off-by: falkTX <falktx@falktx.com>
pull/117/head
falkTX 1 year ago
parent
commit
416c6fb0e0
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 4 additions and 4 deletions
  1. +2
    -2
      libs/juce5/source/modules/juce_core/system/juce_TargetPlatform.h
  2. +1
    -1
      libs/juce6.0/source
  3. +1
    -1
      libs/juce6.1/source/modules/juce_core/system/juce_TargetPlatform.h

+ 2
- 2
libs/juce5/source/modules/juce_core/system/juce_TargetPlatform.h View File

@@ -166,13 +166,13 @@
#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
#endif
#if defined (__arm__) || defined (__arm64__)
#if defined (__arm__) || defined (__arm64__) || defined (__aarch64__)
#define JUCE_ARM 1
#elif __MMX__ || __SSE__ || __amd64__
#define JUCE_INTEL 1


+ 1
- 1
libs/juce6.0/source

@@ -1 +1 @@
Subproject commit 482f9d0a7e22cf07ebdde9a0de49e2a6d54670cd
Subproject commit 3f72f704b2f16bf75fb8efe931e76f142abbc04e

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

@@ -168,7 +168,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…
Cancel
Save