From e20d7b1367f179faeed38718178841377f3accbf Mon Sep 17 00:00:00 2001 From: zt20xx Date: Wed, 19 Mar 2025 19:04:09 +0800 Subject: docs/linux: update go version --- docs/linux/setup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') 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 ``` -- cgit mrf-deployment