mirror of
https://github.com/google/cpu_features.git
synced 2025-04-27 23:22:31 +02:00
Fix: Windows does not define __ARM_NEON (#363)
* Windows does not define __ARM_NEON However, Windows requires NEON to work, so assume it is there if build with MSVC * Clarify NEON availability in MSVC targeting arm64 * Fix Formatting
This commit is contained in:
parent
c5fc491337
commit
6aecde59d3
@ -234,13 +234,14 @@
|
||||
|
||||
#endif // defined(CPU_FEATURES_ARCH_X86)
|
||||
|
||||
#if defined(CPU_FEATURES_ARCH_ANY_ARM)
|
||||
#if defined(__ARM_NEON)
|
||||
// Note: MSVC targeting ARM does not define `__ARM_NEON` but Windows on ARM
|
||||
// requires it. In that case we force NEON detection.
|
||||
#if defined(__ARM_NEON) || \
|
||||
(defined(CPU_FEATURES_COMPILER_MSC) && defined(CPU_FEATURES_ARCH_ANY_ARM))
|
||||
#define CPU_FEATURES_COMPILED_ANY_ARM_NEON 1
|
||||
#else
|
||||
#define CPU_FEATURES_COMPILED_ANY_ARM_NEON 0
|
||||
#endif // defined(__ARM_NEON)
|
||||
#endif // defined(CPU_FEATURES_ARCH_ANY_ARM)
|
||||
#endif
|
||||
|
||||
#if defined(CPU_FEATURES_ARCH_MIPS)
|
||||
#if defined(__mips_msa)
|
||||
|
Loading…
x
Reference in New Issue
Block a user