diff options
| author | Dmitri Shuralyov <dmitshur@golang.org> | 2024-08-16 14:01:15 -0400 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-08-20 17:52:42 +0000 |
| commit | a4cb37d4afd4b6b386ed7b51466c8c57c6045f9c (patch) | |
| tree | 147e5b72169b3bd991e3f23729eca702d5135376 /src/make.bash | |
| parent | 4e1cc09f8b9bcef2b6d0839a7d0026b50c21998b (diff) | |
| download | go-a4cb37d4afd4b6b386ed7b51466c8c57c6045f9c.tar.xz | |
cmd/dist: require Go 1.22.6 as minimum bootstrap toolchain
This is a minimal change to start to require the new minimum bootstrap.
Taking advantage of the newer bootstap to simplify and improve code is
left to be done in separate CLs.
For #64751.
Change-Id: I1d4f883fae3026354a199174d51e79a36cd2dc53
Reviewed-on: https://go-review.googlesource.com/c/go/+/606156
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/make.bash')
| -rwxr-xr-x | src/make.bash | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/make.bash b/src/make.bash index 10e263b3d0..b67ae1529f 100755 --- a/src/make.bash +++ b/src/make.bash @@ -64,14 +64,14 @@ # timing information to this file. Useful for profiling where the # time goes when these scripts run. # -# GOROOT_BOOTSTRAP: A working Go tree >= Go 1.20.6 for bootstrap. +# GOROOT_BOOTSTRAP: A working Go tree >= Go 1.22.6 for bootstrap. # If $GOROOT_BOOTSTRAP/bin/go is missing, $(go env GOROOT) is -# tried for all "go" in $PATH. By default, one of $HOME/go1.20.6, -# $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order. +# tried for all "go" in $PATH. By default, one of $HOME/go1.22.6, +# $HOME/sdk/go1.22.6, or $HOME/go1.4, whichever exists, in that order. # We still check $HOME/go1.4 to allow for build scripts that still hard-code # that name even though they put newer Go toolchains there. -bootgo=1.20.6 +bootgo=1.22.6 set -e |
