mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
DSP: Enable SIMD on ARM only when NEON is available
This commit is contained in:
parent
522217d9c5
commit
3ff8d4f640
1 changed files with 5 additions and 1 deletions
|
|
@ -85,7 +85,11 @@
|
|||
#elif JUCE_ARM
|
||||
|
||||
#ifndef JUCE_USE_SIMD
|
||||
#define JUCE_USE_SIMD 1
|
||||
#if JUCE_USE_ARM_NEON
|
||||
#define JUCE_USE_SIMD 1
|
||||
#else
|
||||
#define JUCE_USE_SIMD 0
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if JUCE_64BIT && JUCE_WINDOWS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue