aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2023-11-23 10:42:03 +0100
committerTaras Madan <tarasmadan@google.com>2023-11-28 14:55:46 +0000
commit1adfb6f64797865884a90b9462fa1b41a9fbd003 (patch)
tree23d2c8d23d00a1835b9f2eaa4cbc691ef3c13728 /docs
parent9fd502516ace3f827e8e2f7c26ffacf6fa78b4c0 (diff)
go: update to 1.20.11 and 1.21.4
1.22 release is expected in Feb 2024. We'll go 1.21 - 1.22 then.
Diffstat (limited to 'docs')
-rw-r--r--docs/linux/setup.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/linux/setup.md b/docs/linux/setup.md
index 5d10a0c1e..4e827ec8f 100644
--- a/docs/linux/setup.md
+++ b/docs/linux/setup.md
@@ -27,13 +27,13 @@ If you encounter any troubles, check the [troubleshooting](/docs/troubleshooting
### Go and syzkaller
-`syzkaller` is written in [Go](https://golang.org), and `Go 1.19+` toolchain is required for build.
+`syzkaller` is written in [Go](https://golang.org), and `Go 1.20+` toolchain is required for build.
Generally we aim at supporting 2 latest releases of Go.
The toolchain can be installed with:
```
-wget https://dl.google.com/go/go1.20.1.linux-amd64.tar.gz
-tar -xf go1.20.1.linux-amd64.tar.gz
+wget https://dl.google.com/go/go1.21.4.linux-amd64.tar.gz
+tar -xf go1.21.4.linux-amd64.tar.gz
export GOROOT=`pwd`/go
export PATH=$GOROOT/bin:$PATH
```