qt5: armv6* is currently broken

This commit is contained in:
Jürgen Buchmüller 2017-03-05 14:26:05 +01:00
parent fcf21781cc
commit 7137665084

View file

@ -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