From c105293cca7a4b5f7d29f238f3e97b6b5f531363 Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 15 Aug 2019 17:06:40 +0200 Subject: [PATCH] nodejs: broken on ppc32 --- srcpkgs/nodejs/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/nodejs/template b/srcpkgs/nodejs/template index e14d74894dc..c500ea8d5fa 100644 --- a/srcpkgs/nodejs/template +++ b/srcpkgs/nodejs/template @@ -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" ;;