diff --git a/meta-oe/recipes-core/toybox/toybox/0001-kconfig-use-HOSTCC-to-build-the-config-frontends.patch b/meta-oe/recipes-core/toybox/toybox/0001-kconfig-use-HOSTCC-to-build-the-config-frontends.patch
new file mode 100644
index 0000000000..7d909dd3d2
--- /dev/null
+++ b/meta-oe/recipes-core/toybox/toybox/0001-kconfig-use-HOSTCC-to-build-the-config-frontends.patch
@@ -0,0 +1,44 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Tue, 4 Aug 2026 00:00:00 -0700
+Subject: [PATCH] kconfig: use HOSTCC to build the config frontends
+
+Commit 228cb983 ("Simplify build dependencies, shrink Makefile, move more
+config plumbing over to new stuff") replaced $(HOSTCC) with a hardcoded
+"cc" in the rules that build kconfig/conf and kconfig/mconf.
+
+These are build-host programs, so they have to be compiled with the host
+compiler the build system provides. When cross compiling in an
+environment that only exports an explicit HOSTCC (and has no "cc" in
+PATH), "make oldconfig" fails with:
+
+  cc -o kconfig/conf kconfig/conf.c kconfig/zconf.tab.c ...
+  make: cc: No such file or directory
+  make: *** [kconfig/Makefile:43: kconfig/conf] Error 127
+
+The top level Makefile already exports HOSTCC, and scripts/portability.sh
+uses $HOSTCC for the other host-side helpers, so honour it here too.
+
+Upstream-Status: Pending
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+diff --git a/kconfig/Makefile b/kconfig/Makefile
+index 1331434..842d6a2 100644
+--- a/kconfig/Makefile
++++ b/kconfig/Makefile
+@@ -35,12 +35,12 @@ SHIPPED = kconfig/zconf.tab.c kconfig/lex.zconf.c kconfig/zconf.hash.c
+ gen_config.h: .config
+ 
+ kconfig/mconf: $(SHIPPED)
+-	cc -o $@ kconfig/mconf.c kconfig/zconf.tab.c \
++	$(HOSTCC) -o $@ kconfig/mconf.c kconfig/zconf.tab.c \
+ 		kconfig/lxdialog/*.c -lcurses -DCURSES_LOC="<ncurses.h>" \
+ 		-DKBUILD_NO_NLS=1 -DPROJECT_NAME=\"$(KCONFIG_PROJECT)\"
+ 
+ kconfig/conf: $(SHIPPED)
+-	cc -o $@ kconfig/conf.c kconfig/zconf.tab.c -DKBUILD_NO_NLS=1 \
++	$(HOSTCC) -o $@ kconfig/conf.c kconfig/zconf.tab.c -DKBUILD_NO_NLS=1 \
+ 		-DPROJECT_NAME=\"$(KCONFIG_PROJECT)\"
+ 
+ clean::
diff --git a/meta-oe/recipes-core/toybox/toybox_0.8.13.bb b/meta-oe/recipes-core/toybox/toybox_0.8.14.bb
similarity index 95%
rename from meta-oe/recipes-core/toybox/toybox_0.8.13.bb
rename to meta-oe/recipes-core/toybox/toybox_0.8.14.bb
index 6a5a155ba5..80ad89d4e7 100644
--- a/meta-oe/recipes-core/toybox/toybox_0.8.13.bb
+++ b/meta-oe/recipes-core/toybox/toybox_0.8.14.bb
@@ -7,8 +7,10 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=78659a599b9325da368f2f1eb88f19c7"
 
 inherit cml1 update-alternatives
 
-SRC_URI = "https://www.landley.net/toybox/downloads/${BPN}-${PV}.tar.gz"
-SRC_URI[sha256sum] = "9d4c124d7d731a2db399f6278baa2b42c2e3511f610c6ad30cc3f1a52581334b"
+SRC_URI = "https://www.landley.net/toybox/downloads/${BPN}-${PV}.tar.gz \
+           file://0001-kconfig-use-HOSTCC-to-build-the-config-frontends.patch \
+           "
+SRC_URI[sha256sum] = "827e4cdfd69f5da973e00e2a59b30b3c9857fb7fae74c362fd0b4f96be7929b0"
 
 SECTION = "base"
 
