From: Ross Burton Date: Wed, 5 Jan 2022 11:27:37 +0000 (+0000) Subject: linux-yocto: add libmpc-native to DEPENDS X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~5607 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=128abf5eb76dd0d2680c93f043bf7cac0a3552b8;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git linux-yocto: add libmpc-native to DEPENDS 5.10.85 changed how the GCC plugins are built, which means they now depend on both GMP and MPC to be built. We already depend on gmp-native, so add libmpc-native aswell. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-kernel/linux/linux-yocto_5.10.bb b/meta/recipes-kernel/linux/linux-yocto_5.10.bb index c62157d8501..bbb25f73930 100644 --- a/meta/recipes-kernel/linux/linux-yocto_5.10.bb +++ b/meta/recipes-kernel/linux/linux-yocto_5.10.bb @@ -36,7 +36,7 @@ LINUX_VERSION ?= "5.10.87" DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" DEPENDS += "openssl-native util-linux-native" -DEPENDS += "gmp-native" +DEPENDS += "gmp-native libmpc-native" PV = "${LINUX_VERSION}+git${SRCPV}"