From: Ross Burton Date: Mon, 10 Jan 2022 04:09:05 +0000 (+0800) Subject: linux-yocto: add libmpc-native to DEPENDS X-Git-Tag: 2021-10.2~52 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=626e138ebf0b7d733f0099cc5a0d9534c1ae64c3;p=openembedded-core.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: Anuj Mittal 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 c62157d850..bbb25f7393 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}"