From ba29ff75d05fca62258d71ffc063e70f0d7b8b09 Mon Sep 17 00:00:00 2001 From: Sabyrzhan Tasbolatov Date: Fri, 27 Sep 2024 20:41:22 +0500 Subject: 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 --- docs/linux/setup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/linux') 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 ``` -- cgit mrf-deployment