summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Veit <claymore1298@gmail.com>2019-07-27 11:18:45 +0200
committerJulian Veit <claymore1298@gmail.com>2019-07-27 11:18:45 +0200
commit2a0838cd5cac6a28c64384e75f88df6ea83ad74c (patch)
treeee8275a97776f5b717b44632fe6042e696282344
parent9b3153b1bc07588d7616358471231455ad199ba5 (diff)
JamesDSP: CFLAGS: build with -Wno-unused-variable -Wno-unused-parameter
-rw-r--r--app/jni/main/Android.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/jni/main/Android.mk b/app/jni/main/Android.mk
index 9982679..bb44632 100644
--- a/app/jni/main/Android.mk
+++ b/app/jni/main/Android.mk
@@ -4,7 +4,7 @@ LOCAL_MODULE := jamesDSPImpulseToolbox
LOCAL_SRC_FILES := kissfft/kiss_fft.c kissfft/kiss_fftr.c JdspImpResToolbox.c AutoConvolver.c
LOCAL_STATIC_LIBRARIES = libsndfile libsamplerate
LOCAL_CPPFLAGS += -ffunction-sections -fdata-sections -Ofast -ftree-vectorize -DNDEBUG
-LOCAL_CFLAGS += -ffunction-sections -fdata-sections -Ofast -ftree-vectorize -DNDEBUG
+LOCAL_CFLAGS += -ffunction-sections -fdata-sections -Ofast -ftree-vectorize -DNDEBUG -Wno-unused-variable -Wno-unused-parameter
LOCAL_LDFLAGS += -Wl,--gc-sections,--exclude-libs,ALL
include $(BUILD_SHARED_LIBRARY)