From ec4026808b7fe798de3937f220889403e83611aa Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Wed, 6 May 2020 16:53:06 +0200 Subject: docs: move go install instructions to setup.md Also update go version requirement to 1.13. --- docs/executing_syzkaller_programs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/executing_syzkaller_programs.md') diff --git a/docs/executing_syzkaller_programs.md b/docs/executing_syzkaller_programs.md index 70809b8ab..d06c16ffd 100644 --- a/docs/executing_syzkaller_programs.md +++ b/docs/executing_syzkaller_programs.md @@ -4,10 +4,10 @@ This page describes how to execute existing syzkaller programs for the purpose of bug reproduction. This way you can replay a single program or a whole execution log with several programs. -1. Setup Go toolchain (if you don't yet have it, you need version 1.11 or higher): -Download latest Go distribution from (https://golang.org/dl/). Unpack it to `$HOME/go1.11`. +1. Setup Go toolchain (if you don't yet have it, you need version 1.13 or higher): +Download latest Go distribution from (https://golang.org/dl/). Unpack it to `$HOME/goroot`. ``` bash -$ export GOROOT=$HOME/go1.11 +$ export GOROOT=$HOME/goroot $ export GOPATH=$HOME/gopath ``` -- cgit mrf-deployment