[vlc-commits] contrib: vpx: fix broken text reloc
Victorien Le Couviour--Tuffet
git at videolan.org
Tue Oct 23 14:53:55 CEST 2018
vlc | branch: master | Victorien Le Couviour--Tuffet <victorien.lecouviour.tuffet at gmail.com> | Mon Sep 17 23:43:58 2018 +0200| [8e2f1a8c8ef6877b25a43612fcd81bfb8646f1f0] | committer: Thomas Guillem
contrib: vpx: fix broken text reloc
Fixes android NDK 17 build
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8e2f1a8c8ef6877b25a43612fcd81bfb8646f1f0
---
contrib/src/vpx/rules.mak | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/src/vpx/rules.mak b/contrib/src/vpx/rules.mak
index 963c25d248..2e296fec38 100644
--- a/contrib/src/vpx/rules.mak
+++ b/contrib/src/vpx/rules.mak
@@ -148,7 +148,7 @@ ifdef HAVE_ANDROID
# uses that path to look for the compiler (which we already know)
VPX_CONF += --sdk-path=$(shell dirname $(shell which $(HOST)-clang))
# broken text relocations
-ifeq ($(ARCH),x86_64)
+ifneq ($(filter i386 x86_64,$(ARCH)),)
VPX_CONF += --disable-mmx
endif
endif
More information about the vlc-commits
mailing list