diff mbox series

[meta-oe] layer.conf: add bcc into NON_MULTILIB_RECIPES

Message ID 20260408122919.4064443-1-Harish.Sadineni@windriver.com
State Under Review
Headers show
Series [meta-oe] layer.conf: add bcc into NON_MULTILIB_RECIPES | expand

Commit Message

Harish Sadineni April 8, 2026, 12:29 p.m. UTC
From: Harish Sadineni <Harish.Sadineni@windriver.com>

Here is the setting in bcc recipe:
COMPATIBLE_HOST = "(x86_64.*|aarch64.*|powerpc64.*|riscv64.*)-linux"

bcc only support 64 bit arch, so add it into NON_MULTILIB_RECIPES
to avoid expanding lib32- variant

Signed-off-by: Harish Sadineni <Harish.Sadineni@windriver.com>
---
 meta-oe/conf/layer.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf
index c6974f6dfe..78df6e3c03 100644
--- a/meta-oe/conf/layer.conf
+++ b/meta-oe/conf/layer.conf
@@ -120,7 +120,7 @@  SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
 
 DEFAULT_TEST_SUITES:pn-meta-oe-ptest-image = " ${PTESTTESTSUITE}"
 
-NON_MULTILIB_RECIPES:append = " crash pahole libbpf bpftrace bpftool"
+NON_MULTILIB_RECIPES:append = " crash pahole libbpf bpftrace bpftool bcc"
 
 NON_MULTILIB_RECIPES:remove:x86 = "libbpf"
 NON_MULTILIB_RECIPES:remove:x86-64 = "libbpf"