aboutsummaryrefslogtreecommitdiffstats
path: root/docs/linux
diff options
context:
space:
mode:
authorzt20xx <zt20030120@outlook.com>2025-03-19 19:04:09 +0800
committerTaras Madan <tarasmadan@google.com>2025-03-19 11:32:50 +0000
commite20d7b1367f179faeed38718178841377f3accbf (patch)
treebd2dcd3225d2324d114812cdc965060b7e8b0f77 /docs/linux
parent8d0a2921fa3fb69c4895e35cddb3310066e97d52 (diff)
docs/linux: update go version
Diffstat (limited to 'docs/linux')
-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 2a0dde4b5..1df36a4b2 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.22+` toolchain is required for build.
+`syzkaller` is written in [Go](https://golang.org), and `Go 1.23+` 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.22.1.linux-amd64.tar.gz
-tar -xf go1.22.1.linux-amd64.tar.gz
+wget https://dl.google.com/go/go1.23.6.linux-amd64.tar.gz
+tar -xf go1.23.6.linux-amd64.tar.gz
export GOROOT=`pwd`/go
export PATH=$GOROOT/bin:$PATH
```