diff options
Diffstat (limited to 'meta/recipes-devtools/go/go-binary-native_1.24.5.bb')
| -rw-r--r-- | meta/recipes-devtools/go/go-binary-native_1.24.5.bb | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-binary-native_1.24.5.bb b/meta/recipes-devtools/go/go-binary-native_1.24.5.bb new file mode 100644 index 0000000000..3de63060c7 --- /dev/null +++ b/meta/recipes-devtools/go/go-binary-native_1.24.5.bb | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | # This recipe is for bootstrapping our go-cross from a prebuilt binary of Go from golang.org. | ||
| 2 | |||
| 3 | SUMMARY = "Go programming language compiler (upstream binary for bootstrap)" | ||
| 4 | HOMEPAGE = " http://golang.org/" | ||
| 5 | LICENSE = "BSD-3-Clause" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7998cb338f82d15c0eff93b7004d272a" | ||
| 7 | |||
| 8 | PROVIDES = "go-native" | ||
| 9 | |||
| 10 | # Checksums available at https://go.dev/dl/ | ||
| 11 | SRC_URI = "https://dl.google.com/go/go${PV}.${BUILD_GOOS}-${BUILD_GOARCH}.tar.gz;name=go_${BUILD_GOTUPLE}" | ||
| 12 | SRC_URI[go_linux_amd64.sha256sum] = "10ad9e86233e74c0f6590fe5426895de6bf388964210eac34a6d83f38918ecdc" | ||
| 13 | SRC_URI[go_linux_arm64.sha256sum] = "0df02e6aeb3d3c06c95ff201d575907c736d6c62cfa4b6934c11203f1d600ffa" | ||
| 14 | SRC_URI[go_linux_ppc64le.sha256sum] = "00bdfb16d1094e78473b681d2d09d42c19c886d4dfed743853769f1665c7a552" | ||
| 15 | |||
| 16 | UPSTREAM_CHECK_URI = "https://golang.org/dl/" | ||
| 17 | UPSTREAM_CHECK_REGEX = "go(?P<pver>\d+(\.\d+)+)\.linux" | ||
| 18 | |||
| 19 | CVE_PRODUCT = "golang:go" | ||
| 20 | CVE_STATUS[CVE-2024-3566] = "not-applicable-platform: Issue only applies on Windows" | ||
| 21 | |||
| 22 | S = "${WORKDIR}/go" | ||
| 23 | |||
| 24 | inherit goarch native | ||
| 25 | |||
| 26 | do_compile() { | ||
| 27 | : | ||
| 28 | } | ||
| 29 | |||
| 30 | make_wrapper() { | ||
| 31 | rm -f ${D}${bindir}/$1 | ||
| 32 | cat <<END >${D}${bindir}/$1 | ||
| 33 | #!/bin/bash | ||
| 34 | here=\`dirname \$0\` | ||
| 35 | export GOROOT="${GOROOT:-\`readlink -f \$here/../lib/go\`}" | ||
| 36 | \$here/../lib/go/bin/$1 "\$@" | ||
| 37 | END | ||
| 38 | chmod +x ${D}${bindir}/$1 | ||
| 39 | } | ||
| 40 | |||
| 41 | do_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 | } | ||
