From: mark.yang@lge.com
To: openembedded-core@lists.openembedded.org
Cc: "mark.yang" <mark.yang@lge.com>
Subject: [PATCH v2] kernel-arch: limit KERNEL_TOOLCHAIN to the kbuild recipes
Date: Fri, 24 Jul 2026 13:59:17 +0900 [thread overview]
Message-ID: <20260724045917.3595374-1-mark.yang@lge.com> (raw)
From: "mark.yang" <mark.yang@lge.com>
u-boot and barebox inherit kernel-arch for the ARCH mapping, so since
0e3756efe0 ("kernel-arch: add KERNEL_TOOLCHAIN to switch the whole
kernel toolchain") KERNEL_TOOLCHAIN = "clang" switches them too. That
swaps u-boot's gcc-cross dependency for clang-cross, but its kbuild
hardcodes ${CROSS_COMPILE}gcc:
/bin/sh: 1: x86_64-oe-linux-gcc: not found
Full log: https://errors.yoctoproject.org/Errors/Build/242654/
Pin TOOLCHAIN back to gcc in kernel-arch and set it from
KERNEL_TOOLCHAIN in kernel.bbclass, module-base and make-mod-scripts.
Signed-off-by: mark.yang <mark.yang@lge.com>
---
v2: add a comment explaining why kernel-arch keeps TOOLCHAIN pinned
to gcc
The v2 series was merged, so this carries the remaining v3 3/3 delta
(<20260720231714.1631366-1-mark.yang@lge.com>) as a follow-up fix.
meta/classes-recipe/kernel-arch.bbclass | 5 ++++-
meta/classes-recipe/kernel.bbclass | 1 +
meta/classes-recipe/module-base.bbclass | 1 +
meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb | 1 +
4 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/meta/classes-recipe/kernel-arch.bbclass b/meta/classes-recipe/kernel-arch.bbclass
index 5f8dbacc0c..72780940f1 100644
--- a/meta/classes-recipe/kernel-arch.bbclass
+++ b/meta/classes-recipe/kernel-arch.bbclass
@@ -92,5 +92,8 @@ KERNEL_LD:toolchain-clang = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-lld'
KERNEL_AR:toolchain-clang = "llvm-ar ${HOST_AR_KERNEL_ARCH}"
KERNEL_OBJCOPY:toolchain-clang = "llvm-objcopy ${HOST_OBJCOPY_KERNEL_ARCH}"
KERNEL_STRIP:toolchain-clang = "llvm-strip"
+# The kbuild recipes (kernel, modules, make-mod-scripts) set TOOLCHAIN
+# from KERNEL_TOOLCHAIN; other inheritors like u-boot and barebox only
+# use kernel-arch for the ARCH mapping and must stay on gcc.
KERNEL_TOOLCHAIN ?= "gcc"
-TOOLCHAIN = "${KERNEL_TOOLCHAIN}"
+TOOLCHAIN = "gcc"
diff --git a/meta/classes-recipe/kernel.bbclass b/meta/classes-recipe/kernel.bbclass
index 91248467be..619359fb7d 100644
--- a/meta/classes-recipe/kernel.bbclass
+++ b/meta/classes-recipe/kernel.bbclass
@@ -214,6 +214,7 @@ python do_symlink_kernsrc () {
addtask symlink_kernsrc before do_patch do_configure after do_unpack
inherit kernel-arch deploy
+TOOLCHAIN = "${KERNEL_TOOLCHAIN}"
PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-module-.*"
PACKAGES_DYNAMIC += "^${KERNEL_PACKAGE_NAME}-image-.*"
diff --git a/meta/classes-recipe/module-base.bbclass b/meta/classes-recipe/module-base.bbclass
index 2a225881ba..cae71a9b15 100644
--- a/meta/classes-recipe/module-base.bbclass
+++ b/meta/classes-recipe/module-base.bbclass
@@ -5,6 +5,7 @@
#
inherit kernel-arch
+TOOLCHAIN = "${KERNEL_TOOLCHAIN}"
# We do the dependency this way because the output is not preserved
# in sstate, so we must force do_compile to run (once).
diff --git a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
index 338a50de91..d11afa86a1 100644
--- a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
+++ b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
@@ -4,6 +4,7 @@ LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
inherit kernel-arch linux-kernel-base
+TOOLCHAIN = "${KERNEL_TOOLCHAIN}"
inherit pkgconfig
PACKAGE_ARCH = "${MACHINE_ARCH}"
next reply other threads:[~2026-07-24 4:59 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 4:59 mark.yang [this message]
2026-07-31 10:44 ` [OE-core] [PATCH v2] kernel-arch: limit KERNEL_TOOLCHAIN to the kbuild recipes Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260724045917.3595374-1-mark.yang@lge.com \
--to=mark.yang@lge.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox