icecat: use nodebug based on wordsize, also broken on ppc32

This commit is contained in:
q66 2019-08-13 17:22:13 +02:00 committed by Johannes
parent 97fc91478a
commit 52dcc85b86

View file

@ -27,13 +27,15 @@ case $XBPS_TARGET_MACHINE in
armv6*) armv6*)
broken="required NEON extensions are not supported on armv6" broken="required NEON extensions are not supported on armv6"
;; ;;
ppc64*) ;;
ppc*) broken="ftbfs in several places" ;;
esac esac
CXXFLAGS="-Wno-class-memaccess -Wno-unused-function" CXXFLAGS="-Wno-class-memaccess -Wno-unused-function"
case "$XBPS_TARGET_MACHINE" in if [ "$XBPS_WORDSIZE" -eq 32 ]; then
i686*) nodebug=yes ;; nodebug=yes
esac fi
post_extract() { post_extract() {
case "$XBPS_TARGET_MACHINE" in case "$XBPS_TARGET_MACHINE" in