From 0e191e19286e87a993d35b021e3f659842efbec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Paul=20K=C3=BChne?= Date: Wed, 15 Jan 2014 15:26:46 +0100 Subject: [PATCH 11/20] contrib/opus disable asm on arm --- contrib/src/opus/rules.mak | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/src/opus/rules.mak b/contrib/src/opus/rules.mak index d783648..f09a112 100644 --- a/contrib/src/opus/rules.mak +++ b/contrib/src/opus/rules.mak @@ -23,6 +23,9 @@ OPUS_CONF= ifndef HAVE_FPU OPUS_CONF += --enable-fixed-point endif +ifdef HAVE_IOS +OPUS_CONF += --disable-asm +endif .opus: opus cd $< && $(HOSTVARS) ./configure $(HOSTCONF) $(OPUS_CONF) -- 1.8.5.2 (Apple Git-48)