From 8ded470b2107f0bc69728fff28d557196bf71468 Mon Sep 17 00:00:00 2001 From: Pablo Saavedra Date: Wed, 17 Jan 2024 09:23:43 +0100 Subject: libbacktrace: fix sdk installation Building an SDK with this included fails: * calculate_dependencies_for: Cannot satisfy the following dependencies for libbacktrace-dev * opkg_solver_install: Cannot install package libbacktrace-dev libbacktrace only provides a static library, so there no ${PN} package is created by default. Remove RDEPENDS in the libbacktrace-dev package to avoid this conflict. Signed-off-by: Khem Raj --- meta-oe/recipes-extended/libbacktrace/libbacktrace_git.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-extended/libbacktrace/libbacktrace_git.bb b/meta-oe/recipes-extended/libbacktrace/libbacktrace_git.bb index 46fa81866b..6f2ead9a8d 100644 --- a/meta-oe/recipes-extended/libbacktrace/libbacktrace_git.bb +++ b/meta-oe/recipes-extended/libbacktrace/libbacktrace_git.bb @@ -23,5 +23,7 @@ do_configure() { oe_runconf } +RDEPENDS:${PN}-dev = "" + # libunwind does not support RISCV32 yet COMPATIBLE_HOST:riscv32 = "null" -- cgit v1.2.3-54-g00ecf