1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

DSP: Don't include neon headers for Windows-ARM64-ClangCL

This commit is contained in:
Oli 2025-08-18 14:45:28 +01:00
parent ceaa708042
commit 1843554ad8

View file

@ -92,10 +92,18 @@
#endif
#endif
#if JUCE_64BIT && JUCE_WINDOWS
#include <arm64_neon.h>
#else
#include <arm_neon.h>
#if JUCE_USE_SIMD
#if JUCE_WINDOWS
#if JUCE_64BIT
#if ! JUCE_CLANG
#include <arm64_neon.h>
#endif
#else
#include <arm_neon.h>
#endif
#else
#include <arm_neon.h>
#endif
#endif
#else