From d8ee0fbf33da7c400a0ba0f8e3f2a8235e338abc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 12 Dec 2020 22:03:05 +0100 Subject: [PATCH] Tweak fluidsynth performance on ARM CPUs --- libs/fluidsynth/config.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libs/fluidsynth/config.h b/libs/fluidsynth/config.h index df624449cb..7da00102b8 100644 --- a/libs/fluidsynth/config.h +++ b/libs/fluidsynth/config.h @@ -201,7 +201,11 @@ #define VERSION "2.0.6" /* Define to do all DSP in single floating point precision */ -/* #undef WITH_FLOAT */ +#ifdef __arm__ +# define WITH_FLOAT +#else +# undef WITH_FLOAT +#endif /* Define to profile the DSP code */ /* #undef WITH_PROFILING */