summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross@burtonini.com>2021-10-05 14:04:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-10-29 11:17:26 +0100
commitd484fcd8df76c1da0bd34145c87ca2d043c7afdc (patch)
tree7f0f28927e7dfe75497c235fcaf0a633cc730a79
parent6c3a8ae1f9e8115aeab95f8a10d45db85ac7afe0 (diff)
downloadpoky-d484fcd8df76c1da0bd34145c87ca2d043c7afdc.tar.gz
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. (From OE-Core rev: 0c15ed141ea3b23140d3aa4e6ae17ddee0947f3f) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit f242a6db0757b31c0d4eba5c362f616e1ace14d6) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-kernel/linux/linux-yocto_5.14.bb2
1 files changed, 1 insertions, 1 deletions
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"
46 46
47DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" 47DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}"
48DEPENDS += "openssl-native util-linux-native" 48DEPENDS += "openssl-native util-linux-native"
49DEPENDS += "gmp-native" 49DEPENDS += "gmp-native libmpc-native"
50 50
51PV = "${LINUX_VERSION}+git${SRCPV}" 51PV = "${LINUX_VERSION}+git${SRCPV}"
52 52