summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2014-02-18 21:30:08 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-02-18 21:30:08 +0000
commiteaa4765b8cc6a6dd5ee0d26dc1b61a1044817f32 (patch)
tree63c6ed0c316a733eee32bee4a609fad85234355e
parentfb7db5853ffb841a4d32fea8b5c3a43e6b875cae (diff)
parent30ee52d8eb45cca10af836e22ee08805f26dd720 (diff)
downloadandroid_external_speex-eaa4765b8cc6a6dd5ee0d26dc1b61a1044817f32.tar.gz
android_external_speex-eaa4765b8cc6a6dd5ee0d26dc1b61a1044817f32.tar.bz2
android_external_speex-eaa4765b8cc6a6dd5ee0d26dc1b61a1044817f32.zip
Merge "speex: disable neon for arm64"
-rw-r--r--Android.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index d33e184..b63528e 100644
--- a/Android.mk
+++ b/Android.mk
@@ -51,8 +51,12 @@ LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS += -DEXPORT= -DFIXED_POINT -DRESAMPLE_FORCE_FULL_SINC_TABLE
LOCAL_CFLAGS += -O3 -fstrict-aliasing -fprefetch-loop-arrays
+ifeq ($(TARGET_ARCH),arm64)
+$(warning TODOArm64: enable neon in libspeex)
+endif
+
ifeq ($(ARCH_ARM_HAVE_NEON),true)
-LOCAL_CFLAGS += -D_USE_NEON
+LOCAL_CFLAGS_arm += -D_USE_NEON
endif
LOCAL_C_INCLUDES += \