# This recipe is for bootstrapping our go-cross from a prebuilt binary of Go from golang.org. SUMMARY = "Go programming language compiler (upstream binary for bootstrap)" HOMEPAGE = " http://golang.org/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=7998cb338f82d15c0eff93b7004d272a" PROVIDES = "go-native" # Checksums available at https://go.dev/dl/ SRC_URI = "https://dl.google.com/go/go${PV}.${BUILD_GOOS}-${BUILD_GOARCH}.tar.gz;name=go_${BUILD_GOTUPLE}" SRC_URI[go_linux_amd64.sha256sum] = "3333f6ea53afa971e9078895eaa4ac7204a8c6b5c68c10e6bc9a33e8e391bdd8" SRC_URI[go_linux_arm64.sha256sum] = "a463cb59382bd7ae7d8f4c68846e73c4d589f223c589ac76871b66811ded7836" SRC_URI[go_linux_ppc64le.sha256sum] = "341a749d168f47b1d4dad25e32cae70849b7ceed7c290823b853c9e6b0df0856" UPSTREAM_CHECK_URI = "https://golang.org/dl/" UPSTREAM_CHECK_REGEX = "go(?P\d+(\.\d+)+)\.linux" CVE_PRODUCT = "golang:go" S = "${WORKDIR}/go" inherit goarch native do_compile() { : } make_wrapper() { rm -f ${D}${bindir}/$1 cat <${D}${bindir}/$1 #!/bin/bash here=\`dirname \$0\` export GOROOT="${GOROOT:-\`readlink -f \$here/../lib/go\`}" \$here/../lib/go/bin/$1 "\$@" END chmod +x ${D}${bindir}/$1 } do_install() { find ${S} -depth -type d -name testdata -exec rm -rf {} + install -d ${D}${bindir} ${D}${libdir}/go cp --preserve=mode,timestamps -R ${S}/ ${D}${libdir}/ for f in ${S}/bin/* do make_wrapper `basename $f` done }