From c918b5985213340ed8b43e598fbf7fe378333e35 Mon Sep 17 00:00:00 2001 From: Gergo Koteles Date: Fri, 18 Apr 2025 23:19:50 +0200 Subject: [PATCH] fix ARM_MATH_NEON defines --- src/Synth_Dexed.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Synth_Dexed.mk b/src/Synth_Dexed.mk index 6aa4a49..4d42e67 100644 --- a/src/Synth_Dexed.mk +++ b/src/Synth_Dexed.mk @@ -40,8 +40,9 @@ INCLUDE += -I $(CMSIS_DSP_COMPUTELIB_INCLUDE_DIR) DEFINE += -DUSE_FX -ifeq ($(strip $(AARCH)),64) +ifeq ($(RPI), $(filter $(RPI), 3 4 5)) DEFINE += -DARM_MATH_NEON +DEFINE += -DARM_MATH_NEON_EXPERIMENTAL DEFINE += -DHAVE_NEON endif