This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fix linux arm 64bit detection
Signed-off-by: falkTX <falktx@falktx.com>
v6.0.8-distrho
falkTX
1 year ago
parent
482f9d0a7e
commit
3f72f704b2
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save