From dd7fa90e0dfe11f013bdd5b691385c15257cc899 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 9 Aug 2025 11:12:03 -0700 Subject: [PATCH] go-cross: Disable build with ccache go compiler does not work reliably with ccache gcc: fatal error: no input files (From OE-Core rev: 136743fe72591b90794ec30b9a3fbb41fe6a66aa) Signed-off-by: Khem Raj Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/recipes-devtools/go/go-cross.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/go/go-cross.inc b/meta/recipes-devtools/go/go-cross.inc index a0fbdbe3b9..ebee2e53cd 100644 --- a/meta/recipes-devtools/go/go-cross.inc +++ b/meta/recipes-devtools/go/go-cross.inc @@ -5,6 +5,8 @@ DEPENDS = "go-native" PN = "go-cross-${TUNE_PKGARCH}" +CCACHE_DISABLE = "1" + export GOCACHE = "${B}/.cache" CC = "${@d.getVar('BUILD_CC').strip()}"