diff options
author | Ross Burton <ross@burtonini.com> | 2022-01-05 11:27:37 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-07 14:39:17 +0000 |
commit | 9330d750a94dd58f3c60ca30bf2b71f18366e910 (patch) | |
tree | cf0aca70b9782075cac182acc745d7df8bb2d700 /meta/recipes-kernel | |
parent | 0cda4b934d95b59549f2e2a07a9ace1e921f152e (diff) | |
download | poky-9330d750a94dd58f3c60ca30bf2b71f18366e910.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: 128abf5eb76dd0d2680c93f043bf7cac0a3552b8)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-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 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" | |||
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 | ||