From 4603f96f126f7afd5a194751027e65b106f71110 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 1 Apr 2013 02:45:25 +0200 Subject: [PATCH] (Makefile) Add -DSINC_LOWER_QUALITY when compiling with HAVE_NEON support on ARM Linux --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index f68adb5eae..9857bdaad8 100644 --- a/Makefile +++ b/Makefile @@ -303,6 +303,9 @@ ifeq ($(HAVE_SINC), 1) ifeq ($(HAVE_NEON),1) OBJ += audio/sinc_neon.o + # When compiled without this, tries to attempt to compile sinc lerp, + # which will error out + DEFINES += -DSINC_LOWER_QUALITY endif endif OBJ += audio/utils.o