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:
parent
abc92f2d77
commit
5c20361d5c
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue