The recipe was building native go against build host headers and libraries,
and then installing it as a nativesdk item, which is entirely incorrect. This 
has
been working by coincidence (go generally uses C and C libraries lightly)
but with go 1.20 this turned into hard breakage.

Also nativesdk sysroot was being passed in incorrectly.

Signed-off-by: Alexander Kanavin <a...@linutronix.de>
---
 meta/recipes-devtools/go/go-cross-canadian.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-devtools/go/go-cross-canadian.inc 
b/meta/recipes-devtools/go/go-cross-canadian.inc
index c1aa987427..5a80ceffa3 100644
--- a/meta/recipes-devtools/go/go-cross-canadian.inc
+++ b/meta/recipes-devtools/go/go-cross-canadian.inc
@@ -21,10 +21,10 @@ export GO_LDFLAGS = '-linkmode external -extld 
${HOST_PREFIX}gcc -extldflags "--
 do_configure[noexec] = "1"
 
 do_compile() {
-       export CC_FOR_${HOST_GOTUPLE}="${HOST_PREFIX}gcc 
--sysroot=${STAGING_DIR_HOST}${SDKPATHNATIVE} ${SECURITY_NOPIE_CFLAGS}"
-       export CXX_FOR_${HOST_GOTUPLE}="${HOST_PREFIX}gxx 
--sysroot=${STAGING_DIR_HOST}${SDKPATHNATIVE} ${SECURITY_NOPIE_CFLAGS}"
+       export CC_FOR_${HOST_GOTUPLE}="${HOST_PREFIX}gcc 
--sysroot=${STAGING_DIR_HOST} ${SECURITY_NOPIE_CFLAGS}"
+       export CXX_FOR_${HOST_GOTUPLE}="${HOST_PREFIX}gxx 
--sysroot=${STAGING_DIR_HOST} ${SECURITY_NOPIE_CFLAGS}"
        cd src
-       ./make.bash --host-only --no-banner
+       ./make.bash --target-only --no-banner
        cd ${B}
 }
 do_compile[cleandirs] += "${GOTMPDIR} ${B}/bin ${B}/pkg"
-- 
2.30.2

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#176978): 
https://lists.openembedded.org/g/openembedded-core/message/176978
Mute This Topic: https://lists.openembedded.org/mt/96871666/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to