diff options
author | Chanho Park <chanho61.park@samsung.com> | 2021-09-10 14:03:51 +0900 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-11 22:39:20 +0100 |
commit | cb8edc767e65df75845031307cfea6a92fde81c0 (patch) | |
tree | b566d779ccb4c37f90ba6e989b711600daccf945 | |
parent | 505fdf638ce62e9424f65d783956b75db3861016 (diff) | |
download | poky-cb8edc767e65df75845031307cfea6a92fde81c0.tar.gz |
binutils: inherit pkgconfig to address libdebuginfod depdency
Since libdebuginfo was default distro feature[1], cross build of binutils
has been broken due to absence of pkg-config. To find the dependency
properly, we should inherit pkgconfig bbclass.
checking for aarch64-poky-linux-pkg-config... no
checking for pkg-config... no
checking whether to use debuginfod... yes
checking for libdebuginfod >= 0.179... no
configure: error: "--with-debuginfod was given, but libdebuginfod is missing or unusable."
[1]: https://lists.openembedded.org/g/openembedded-core/message/150666
(From OE-Core rev: 50154869b496cf63a4fae2c8278350fcf9a2591d)
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/binutils/binutils.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/binutils/binutils.inc b/meta/recipes-devtools/binutils/binutils.inc index 7d5149fa16..2f65ae5474 100644 --- a/meta/recipes-devtools/binutils/binutils.inc +++ b/meta/recipes-devtools/binutils/binutils.inc | |||
@@ -13,7 +13,7 @@ LICENSE = "GPLv3" | |||
13 | 13 | ||
14 | DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-native" | 14 | DEPENDS = "flex-native bison-native zlib-native gnu-config-native autoconf-native" |
15 | 15 | ||
16 | inherit autotools gettext multilib_header texinfo | 16 | inherit autotools gettext multilib_header pkgconfig texinfo |
17 | 17 | ||
18 | FILES:${PN} = " \ | 18 | FILES:${PN} = " \ |
19 | ${bindir}/${TARGET_PREFIX}* \ | 19 | ${bindir}/${TARGET_PREFIX}* \ |