From 67cdebbd2472380ac5c4339ac82fba4749b0e6da Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 2 Mar 2021 11:45:05 +0000 Subject: [PATCH] Fix armhf build Signed-off-by: falkTX --- ports/vitalium/source/synthesis/framework/poly_values.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ports/vitalium/source/synthesis/framework/poly_values.h b/ports/vitalium/source/synthesis/framework/poly_values.h index 3ae10af1..fd90a8f9 100644 --- a/ports/vitalium/source/synthesis/framework/poly_values.h +++ b/ports/vitalium/source/synthesis/framework/poly_values.h @@ -27,6 +27,9 @@ #define VITAL_SSE2 1 #elif defined(__ARM_NEON__) || defined(__ARM_NEON) #define VITAL_NEON 1 + #if !(defined(__aarch64__) || defined(__arm64__)) + #define NEON_ARM32 1 + #endif #else static_assert(false, "No SIMD Intrinsics found which are necessary for compilation"); #endif