From 1adfb6f64797865884a90b9462fa1b41a9fbd003 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Thu, 23 Nov 2023 10:42:03 +0100 Subject: go: update to 1.20.11 and 1.21.4 1.22 release is expected in Feb 2024. We'll go 1.21 - 1.22 then. --- 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 5d10a0c1e..4e827ec8f 100644 --- a/docs/linux/setup.md +++ b/docs/linux/setup.md @@ -27,13 +27,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.19+` toolchain is required for build. +`syzkaller` is written in [Go](https://golang.org), and `Go 1.20+` 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.20.1.linux-amd64.tar.gz -tar -xf go1.20.1.linux-amd64.tar.gz +wget https://dl.google.com/go/go1.21.4.linux-amd64.tar.gz +tar -xf go1.21.4.linux-amd64.tar.gz export GOROOT=`pwd`/go export PATH=$GOROOT/bin:$PATH ``` -- cgit mrf-deployment