diff options
author | Ross Burton <ross@burtonini.com> | 2022-01-10 12:09:05 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-10 11:57:44 +0000 |
commit | b5010071e6291b3f5431b371907064b63c1565df (patch) | |
tree | a79ae2e9a2c8b674553dc08a8fe3c549d9e8d9b3 /meta | |
parent | cb5dbab215decb017c71be90c85c21e845c7d787 (diff) | |
download | poky-b5010071e6291b3f5431b371907064b63c1565df.tar.gz |
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.
(From OE-Core rev: b90dab2c8634c052c101cebb38fcd3d869f3b1bb)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_5.10.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto_5.10.bb b/meta/recipes-kernel/linux/linux-yocto_5.10.bb index 1769dd402c..d877c1e6b5 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" | |||
36 | 36 | ||
37 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" | 37 | DEPENDS += "${@bb.utils.contains('ARCH', 'x86', 'elfutils-native', '', d)}" |
38 | DEPENDS += "openssl-native util-linux-native" | 38 | DEPENDS += "openssl-native util-linux-native" |
39 | DEPENDS += "gmp-native" | 39 | DEPENDS += "gmp-native libmpc-native" |
40 | 40 | ||
41 | PV = "${LINUX_VERSION}+git${SRCPV}" | 41 | PV = "${LINUX_VERSION}+git${SRCPV}" |
42 | 42 | ||