From b07d91451ea1b7cdaea357d1dea98397d3e41190 Mon Sep 17 00:00:00 2001 From: q66 Date: Sun, 16 Oct 2022 17:26:21 +0000 Subject: [PATCH] hyperrogue: disable debug on ppc32 --- srcpkgs/hyperrogue/template | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/srcpkgs/hyperrogue/template b/srcpkgs/hyperrogue/template index 61f52541d91..137ebcead18 100644 --- a/srcpkgs/hyperrogue/template +++ b/srcpkgs/hyperrogue/template @@ -19,6 +19,11 @@ nocross="Generates code from build output that must run on host" # which are not set correctly by upstream. CXXFLAGS+=" -I/usr/include/SDL -DHYPERPATH='\"/usr/share/hyperrogue/\"' -DHYPERFONTPATH='\"/usr/share/fonts/TTF/\"'" +case "$XBPS_TARGET_MACHINE" in + ppc64*) ;; + ppc*) nodebug=yes;; # build runs out of memory +esac + export HYPERROGUE_USE_GLEW=1 export HYPERROGUE_USE_PNG=1