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:
parent
5fa91adcd6
commit
a8d7b3c623
|
|
@ -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)}"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue