From 16686ae37fa4fa47f7612b577fa5783c23fdbec8 Mon Sep 17 00:00:00 2001 From: sthen Date: Wed, 10 Sep 2025 08:06:20 +0000 Subject: [PATCH] restrict DPB_PROPERTIES=parallel, since the update this uses too much ram during build for smaller archs. might still not be enough, but we'll see after some more bulk builds. --- games/godot4/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/games/godot4/Makefile b/games/godot4/Makefile index dd6c6cfca1e..6c968869b20 100644 --- a/games/godot4/Makefile +++ b/games/godot4/Makefile @@ -1,5 +1,10 @@ BROKEN-powerpc = fails at runtime, the UI is totally blank +.if ${MACHINE_ARCH} == amd64 || ${MACHINE_ARCH} == aarch64 +# uses too much ram for smaller archs +DPB_PROPERTIES = parallel +.endif + COMMENT-main = 2D and 3D game engine COMMENT-editor= 2D and 3D game engine (with the editor) @@ -109,8 +114,6 @@ RUN_DEPENDS-editor = devel/desktop-file-utils DEBUG_PACKAGES = ${BUILD_PACKAGES} NO_TEST = Yes -DPB_PROPERTIES = parallel - .if ${MACHINE_ARCH:Mhppa} LDFLAGS += -latomic WANTLIB += atomic