From: Alexander Kanavin <alex.kana...@gmail.com>

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>
Signed-off-by: Luca Ceresoli <luca.ceres...@bootlin.com>
Signed-off-by: Richard Purdie <richard.pur...@linuxfoundation.org>
Signed-off-by: Jose Quaresma <jose.quare...@foundries.io>
---
 recipes-devtools/go-1.20/go-cross-canadian.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes-devtools/go-1.20/go-cross-canadian.inc 
b/recipes-devtools/go-1.20/go-cross-canadian.inc
index c1aa987..5a80cef 100644
--- a/recipes-devtools/go-1.20/go-cross-canadian.inc
+++ b/recipes-devtools/go-1.20/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.34.1

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

Reply via email to