From 5c20361d5c2273cd58898b72ddd601d909dc9d8c Mon Sep 17 00:00:00 2001 From: Gabriel Valcazar Date: Wed, 11 Dec 2024 12:48:39 +0100 Subject: [PATCH] wpewebkit: reduce maximum number of PARALLEL_MAKE threads to 8 Even though we're already limiting this number of threads to 16, the wpewebkit compilation process often crashes, even on powerful development PCs with 32 logical cores and 32 GiB of RAM. Reducing the number of threads to 8 avoids this, at the expense of a slightly longer compilation time. https://onedigi.atlassian.net/browse/DEL-9411 Signed-off-by: Gabriel Valcazar --- .../webkit/recipes-browser/wpewebkit/wpewebkit_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-digi-dey/dynamic-layers/webkit/recipes-browser/wpewebkit/wpewebkit_%.bbappend b/meta-digi-dey/dynamic-layers/webkit/recipes-browser/wpewebkit/wpewebkit_%.bbappend index efbc82ef4..127e9d236 100644 --- a/meta-digi-dey/dynamic-layers/webkit/recipes-browser/wpewebkit/wpewebkit_%.bbappend +++ b/meta-digi-dey/dynamic-layers/webkit/recipes-browser/wpewebkit/wpewebkit_%.bbappend @@ -7,7 +7,7 @@ inherit features_check REQUIRED_DISTRO_FEATURES = "wayland" # Limit number of parallel threads make can run to avoid a ninja build issue -PARALLEL_MAKE = "-j ${@oe.utils.cpu_count(at_most=16)}" +PARALLEL_MAKE = "-j ${@oe.utils.cpu_count(at_most=8)}" # Remove PACKAGECONFIGs that either no longer work or pull in unwanted # dependencies