wpewebkit: limit number of parallel threads to fix a build issue

Building the wpewebkit recipe with more than 16 threads throws an unexpected
error "ninja: build stopped: subcommand failed.", so this commit limits it
to a safe value.

Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
Arturo Buzarra 2022-07-25 23:38:35 +02:00
parent 5fa91adcd6
commit a8d7b3c623
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,10 @@
# Copyright 2020-2021 Digi International Inc. # Copyright 2020-2022 Digi International Inc.
# We can't build the WebKit with fb images, so force wayland as a required # We can't build the WebKit with fb images, so force wayland as a required
# distro feature. # distro feature.
inherit features_check 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
PARALLEL_MAKE = "-j ${@oe.utils.cpu_count(at_most=16)}"