nodejs: broken on ppc32

This commit is contained in:
q66 2019-08-15 17:06:40 +02:00 committed by Helmut Pozimski
parent 099252d981
commit c105293cca
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@ if [ "$XBPS_WORDSIZE" -ne "$XBPS_TARGET_WORDSIZE" ]; then
nocross="host and target must have the same pointer size"
fi
case "$XBPS_TARGET_MACHINE" in
ppc64*) ;;
ppc*) broken="Node 12.x does not support 32-bit ppc" ;;
esac
# v8 requires libatomic on ppc*/s390x/mips*
case "$XBPS_TARGET_MACHINE" in
mips*|ppc*) makedepends+=" libatomic-devel" ;;