summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-binary-native_1.24.5.bb
diff options
context:
space:
mode:
authorPeter Marko <peter.marko@siemens.com>2025-07-18 18:32:02 +0200
committerSteve Sakoman <steve@sakoman.com>2025-07-29 08:42:34 -0700
commit1511eafe501f8e80ed063d1e4d55a90bd532d780 (patch)
treebb53f07ebdf5ea175a2458576fcc5e022eb368e0 /meta/recipes-devtools/go/go-binary-native_1.24.5.bb
parenta32c4171189f7374ae74e07237e05fb85be4772c (diff)
downloadpoky-1511eafe501f8e80ed063d1e4d55a90bd532d780.tar.gz
go: upgrade 1.24.4 -> 1.24.5
Upgrade to latest 1.24.x release [1]: $ git --no-pager log --oneline go1.24.4..go1.24.5 9d828e80fa (tag: go1.24.5) [release-branch.go1.24] go1.24.5 825eeee3f7 [release-branch.go1.24] cmd/go: disable support for multiple vcs in one module dbf30d88f3 [release-branch.go1.24] cmd/link: permit a larger size BSS reference to a smaller DATA symbol 6b51660c8c [release-branch.go1.24] runtime: set mspan limit field early and eagerly cc604130c8 [release-branch.go1.24] runtime: prevent mutual deadlock between GC stopTheWorld and suspendG 21b488bb60 [release-branch.go1.24] runtime: handle system goroutines later in goroutine profiling e038690847 [release-branch.go1.24] cmd/go/internal/fips140: ignore GOEXPERIMENT on error 1575127ef8 [release-branch.go1.24] runtime: add missing unlock in sysReserveAlignedSbrk 7d08a16fba [release-branch.go1.24] cmd/compile/internal/ssa: fix PPC64 merging of (AND (S[RL]Dconst ...) 5f2cbe1f64 [release-branch.go1.24] cmd/compile: do nil check before calling duff functions, on arm64 and amd64 Fixes CVE-2025-4674 [2]. [1] https://github.com/golang/go/compare/go1.24.4...go1.24.5 [2] https://groups.google.com/g/golang-announce/c/gTNJnDXmn34 (From OE-Core rev: a3cc5038ea10a4857627e6f4de25bdc43023a349) (From OE-Core rev: 631afac9d81346a5d5b2e2a073ad4664c780e9af) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Steve Sakoman <steve@sakoman.com>
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.bb51
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
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] = "10ad9e86233e74c0f6590fe5426895de6bf388964210eac34a6d83f38918ecdc"
13SRC_URI[go_linux_arm64.sha256sum] = "0df02e6aeb3d3c06c95ff201d575907c736d6c62cfa4b6934c11203f1d600ffa"
14SRC_URI[go_linux_ppc64le.sha256sum] = "00bdfb16d1094e78473b681d2d09d42c19c886d4dfed743853769f1665c7a552"
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 = "${WORKDIR}/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}