From 7137665084f81c0859b5e1432ddc4eb04f13039a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Sun, 5 Mar 2017 14:26:05 +0100 Subject: [PATCH] qt5: armv6* is currently broken --- srcpkgs/qt5/template | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/srcpkgs/qt5/template b/srcpkgs/qt5/template index 1e1ffcb0777..2cc5d4a5ec3 100644 --- a/srcpkgs/qt5/template +++ b/srcpkgs/qt5/template @@ -39,13 +39,16 @@ CXXFLAGS="-DOPENSSL_NO_SSL3_METHOD -Wno-deprecated-declarations -fno-delete-null LDFLAGS="-pthread -fPIE" case "$XBPS_TARGET_MACHINE" in - armv[56]*) # Can't cross compile libvpx + armv5*) # Cannot cross compile libvpx (?) + ;; + armv6*) # Cannot cross compile libvpx and is currently broken + broken="Can't build vp8 for qtwebengine/chromium/ffmpeg)" ;; armv7*) # Force use of neon and enable libvpx CXXFLAGS+=" -mfpu=neon" makedepends+=" libvpx-devel" ;; - *) # Other architectures have libvpx (TODO: mips-* too?) + *) # Other architectures have libvpx (TODO: mips-* too?) makedepends+=" libvpx-devel" ;; esac