From d23e90a7b44b62b0d3b116a6d30849ce66051529 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 14 Mar 2019 14:17:31 +0100 Subject: all: switch to Go 1.12 Differences in code formatting between Go versions cause constant problems for us (https://github.com/golang/go/issues/25161). Currently we support 1.9 and 1.10. Switch to newer 1.11 and 1.12. Fixes #1013 --- 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 6ffd8694e..c0aaf0495 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.9 or higher): -Download latest Go distribution from (https://golang.org/dl/). Unpack it to `$HOME/go1.9`. +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`. ``` bash -$ export GOROOT=$HOME/go1.9 +$ export GOROOT=$HOME/go1.11 $ export GOPATH=$HOME/gopath ``` -- cgit mrf-deployment