aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorSabyrzhan Tasbolatov <snovitoll@gmail.com>2024-09-27 20:41:22 +0500
committerDmitry Vyukov <dvyukov@google.com>2024-09-28 08:26:31 +0000
commitba29ff75d05fca62258d71ffc063e70f0d7b8b09 (patch)
treea0b0afd1f6464d7203b8204b8fed2aca99da284f /docs
parent440b26ec58c1da582a1b614a476a4b5f3abf43d0 (diff)
doc: update go version in syzkaller setup
go.mod has been bumped with go 1.22.1 version recently. So let's update the documentation as well. https://github.com/google/syzkaller/blob/master/docs/linux/setup.md#go-and-syzkaller
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 4f49615ff..2a0dde4b5 100644
--- a/docs/linux/setup.md
+++ b/docs/linux/setup.md
@@ -26,13 +26,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.21+` toolchain is required for build.
+`syzkaller` is written in [Go](https://golang.org), and `Go 1.22+` 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.21.4.linux-amd64.tar.gz
-tar -xf go1.21.4.linux-amd64.tar.gz
+wget https://dl.google.com/go/go1.22.1.linux-amd64.tar.gz
+tar -xf go1.22.1.linux-amd64.tar.gz
export GOROOT=`pwd`/go
export PATH=$GOROOT/bin:$PATH
```