From b0f38394263b64314b5c8ec9199b8541775f8173 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Tue, 6 Jan 2026 20:20:38 +0100 Subject: [PATCH] feat: Limit the number of threads when building macos releases, b=no-bug, c=configs --- configs/macos/mozconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/macos/mozconfig b/configs/macos/mozconfig index 83d2966c2..f24915f2a 100644 --- a/configs/macos/mozconfig +++ b/configs/macos/mozconfig @@ -51,3 +51,7 @@ fi # See https://searchfox.org/firefox-main/rev/e61d59b5c9a651fd7bf28043f87c0dc669833496/build/moz.configure/lto-pgo.configure#261 export MOZ_LD64_KNOWN_GOOD=1 ac_add_options --enable-linker=ld64 + +if test "$ZEN_RELEASE"; then + mk_add_options MOZ_MAKE_FLAGS="-j4" +fi