[vlc-commits] contrib: speexdsp: disable neon on aarch64

Thomas Guillem git at videolan.org
Fri Oct 10 10:43:44 CEST 2014


vlc | branch: master | Thomas Guillem <tom at gllm.fr> | Fri Oct 10 09:44:18 2014 +0200| [9cf85e3ab92718d8a9ec661cd671b7e7a4289d58] | committer: Jean-Baptiste Kempf

contrib: speexdsp: disable neon on aarch64

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9cf85e3ab92718d8a9ec661cd671b7e7a4289d58
---

 contrib/src/speexdsp/rules.mak |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/contrib/src/speexdsp/rules.mak b/contrib/src/speexdsp/rules.mak
index 7a2bc80..e87bd02 100644
--- a/contrib/src/speexdsp/rules.mak
+++ b/contrib/src/speexdsp/rules.mak
@@ -23,6 +23,10 @@ speexdsp: speexdsp-$(SPEEXDSP_VERSION).tar.gz .sum-speexdsp
 	$(MOVE)
 
 SPEEXDSP_CONF := --enable-resample-full-sinc-table
+ifeq ($(ARCH),aarch64)
+# old neon, not compatible with aarch64
+SPEEXDSP_CONF += --disable-neon
+endif
 ifndef HAVE_FPU
 SPEEXDSP_CONF += --enable-fixed-point
 ifeq ($(ARCH),arm)



More information about the vlc-commits mailing list