From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 In-Reply-To: References: <41B5A142-CD49-456F-AA4C-782EE401A192@gmail.com> From: David du Colombier <0intro@gmail.com> Date: Fri, 28 Oct 2016 08:58:26 +0200 Message-ID: To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=UTF-8 Subject: Re: [9fans] Making available a pre-compiled go binary for Miller's plan-9 Pi image Topicbox-Message-UUID: a72b933a-ead9-11e9-9d60-3106f5b1d025 > you have to have an n-1 version of Go to compile n You have to bootstrap from Go >= 1.4. If you want to build the current Go source from scratch on plan9/386, you can just do: cd /tmp git clone -b go1.4.3 https://go.googlesource.com/go go1.4 cd go1.4 hget http://9legacy.org/go/patch/syscall-exec.diff | ape/patch -p1 cd src make.rc GOROOT_BOOTSTRAP=/tmp/go1.4 cd /tmp git clone https://go.googlesource.com/go cd go/src make.rc This is documented on https://github.com/golang/go/wiki/Plan9 -- David du Colombier