Skip to content

Commit

Permalink
doc: update go version in syzkaller setup
Browse files Browse the repository at this point in the history
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
  • Loading branch information
novitoll authored and dvyukov committed Sep 28, 2024
1 parent 440b26e commit ba29ff7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/linux/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down

0 comments on commit ba29ff7

Please sign in to comment.