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 <gabriel.valcazar@digi.com>
This commit is contained in:
Gabriel Valcazar 2024-12-11 12:48:39 +01:00
parent abc92f2d77
commit 5c20361d5c
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ inherit features_check
REQUIRED_DISTRO_FEATURES = "wayland" REQUIRED_DISTRO_FEATURES = "wayland"
# Limit number of parallel threads make can run to avoid a ninja build issue # 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 # Remove PACKAGECONFIGs that either no longer work or pull in unwanted
# dependencies # dependencies