[vlc-commits] contrib: speexdsp: disable neon on aarch64
    Thomas Guillem 
    git at videolan.org
       
    Mon Oct 27 20:35:37 CET 2014
    
    
  
vlc/vlc-2.2 | branch: master | Thomas Guillem <tom at gllm.fr> | Fri Oct 10 09:44:18 2014 +0200| [b486cba4c3ee94ee3d9db331189870c3455219b5] | committer: Jean-Baptiste Kempf
contrib: speexdsp: disable neon on aarch64
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
(cherry picked from commit 9cf85e3ab92718d8a9ec661cd671b7e7a4289d58)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=b486cba4c3ee94ee3d9db331189870c3455219b5
---
 contrib/src/speexdsp/rules.mak |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/contrib/src/speexdsp/rules.mak b/contrib/src/speexdsp/rules.mak
index c29a9bd..3cc2b15 100644
--- a/contrib/src/speexdsp/rules.mak
+++ b/contrib/src/speexdsp/rules.mak
@@ -23,7 +23,8 @@ speexdsp: speexdsp-$(SPEEXDSP_VERSION).tar.gz .sum-speexdsp
 	$(MOVE)
 
 SPEEXDSP_CONF := --enable-resample-full-sinc-table --disable-examples
-ifndef HAVE_NEON
+ifeq ($(ARCH),aarch64)
+# old neon, not compatible with aarch64
 SPEEXDSP_CONF += --disable-neon
 endif
 ifndef HAVE_NEON
    
    
More information about the vlc-commits
mailing list