Skip to content

Commit

Permalink
Fixes armhf build
Browse files Browse the repository at this point in the history
Do not enable NEON when building for armf
  • Loading branch information
crsib committed Nov 9, 2023
1 parent 9c8c315 commit c7428ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ typedef __m128 v4sf;
/*
ARM NEON support macros
*/
#elif !defined(PFFFT_SIMD_DISABLE) && (defined(__arm__) || defined(__aarch64__) || defined(__arm64__) || defined(_M_ARM64))
#elif !defined(PFFFT_SIMD_DISABLE) && (defined(__aarch64__) || defined(__arm64__) || defined(_M_ARM64))
# include <arm_neon.h>
typedef float32x4_t v4sf;
# define SIMD_SZ 4
Expand Down

0 comments on commit c7428ca

Please sign in to comment.