summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-binary-native_1.24.4.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/go/go-binary-native_1.24.4.bb')
-rw-r--r--meta/recipes-devtools/go/go-binary-native_1.24.4.bb51
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-binary-native_1.24.4.bb b/meta/recipes-devtools/go/go-binary-native_1.24.4.bb
new file mode 100644
index 0000000000..ae85d3e266
--- /dev/null
+++ b/meta/recipes-devtools/go/go-binary-native_1.24.4.bb
@@ -0,0 +1,51 @@
1# This recipe is for bootstrapping our go-cross from a prebuilt binary of Go from golang.org.
2
3SUMMARY = "Go programming language compiler (upstream binary for bootstrap)"
4HOMEPAGE = " http://golang.org/"
5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=7998cb338f82d15c0eff93b7004d272a"
7
8PROVIDES = "go-native"
9
10# Checksums available at https://go.dev/dl/
11SRC_URI = "https://dl.google.com/go/go${PV}.${BUILD_GOOS}-${BUILD_GOARCH}.tar.gz;name=go_${BUILD_GOTUPLE}"
12SRC_URI[go_linux_amd64.sha256sum] = "77e5da33bb72aeaef1ba4418b6fe511bc4d041873cbf82e5aa6318740df98717"
13SRC_URI[go_linux_arm64.sha256sum] = "d5501ee5aca0f258d5fe9bfaed401958445014495dc115f202d43d5210b45241"
14SRC_URI[go_linux_ppc64le.sha256sum] = "9ca4afef813a2578c23843b640ae0290aa54b2e3c950a6cc4c99e16a57dec2ec"
15
16UPSTREAM_CHECK_URI = "https://golang.org/dl/"
17UPSTREAM_CHECK_REGEX = "go(?P<pver>\d+(\.\d+)+)\.linux"
18
19CVE_PRODUCT = "golang:go"
20CVE_STATUS[CVE-2024-3566] = "not-applicable-platform: Issue only applies on Windows"
21
22S = "${UNPACKDIR}/go"
23
24inherit goarch native
25
26do_compile() {
27 :
28}
29
30make_wrapper() {
31 rm -f ${D}${bindir}/$1
32 cat <<END >${D}${bindir}/$1
33#!/bin/bash
34here=\`dirname \$0\`
35export GOROOT="${GOROOT:-\`readlink -f \$here/../lib/go\`}"
36\$here/../lib/go/bin/$1 "\$@"
37END
38 chmod +x ${D}${bindir}/$1
39}
40
41do_install() {
42 find ${S} -depth -type d -name testdata -exec rm -rf {} +
43
44 install -d ${D}${bindir} ${D}${libdir}/go
45 cp --preserve=mode,timestamps -R ${S}/ ${D}${libdir}/
46
47 for f in ${S}/bin/*
48 do
49 make_wrapper `basename $f`
50 done
51}