From f242a6db0757b31c0d4eba5c362f616e1ace14d6 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 5 Oct 2021 14:04:11 +0100 Subject: [PATCH] linux-yocto: add libmpc-native to DEPENDS 5.14 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: Alexandre Belloni --- meta/recipes-kernel/linux/linux-yocto_5.14.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-kernel/linux/linux-yocto_5.14.bb b/meta/recipes-kernel/linux/linux-yocto_5.14.bb index f1d353072c..6a032a1f77 100644 --- a/meta/recipes-kernel/linux/linux-yocto_5.14.bb +++ b/meta/recipes-kernel/linux/linux-yocto_5.14.bb @@ -46,7 +46,7 @@ LINUX_VERSION ?= "5.14.9" 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}" -- 2.40.1