[vlc-commits] contrib: gmp: fix clang clang build
Thomas Guillem
git at videolan.org
Tue Aug 30 13:13:24 CEST 2016
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Aug 30 13:11:19 2016 +0200| [971c28f905474c48aa529f28b8858405e6461238] | committer: Thomas Guillem
contrib: gmp: fix clang clang build
disable asm because of invalid operand for inline asm constraint error.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=971c28f905474c48aa529f28b8858405e6461238
---
contrib/src/gmp/rules.mak | 3 +++
1 file changed, 3 insertions(+)
diff --git a/contrib/src/gmp/rules.mak b/contrib/src/gmp/rules.mak
index d4f011c..a2f32d1 100644
--- a/contrib/src/gmp/rules.mak
+++ b/contrib/src/gmp/rules.mak
@@ -9,6 +9,9 @@ ifeq ($(CC),clang)
ifeq ($(ARCH),mipsel)
GMP_CONF += --disable-assembly
endif
+ifeq ($(ARCH),mips64el)
+GMP_CONF += --disable-assembly
+endif
endif
$(TARBALLS)/gmp-$(GMP_VERSION).tar.bz2:
More information about the vlc-commits
mailing list