From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris McGee Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (1.0) Date: Fri, 28 Oct 2016 10:53:48 -0400 Message-Id: <8A38C9CD-6FDE-4943-A812-6632F068B53F@gmail.com> References: <41B5A142-CD49-456F-AA4C-782EE401A192@gmail.com> In-Reply-To: To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Subject: Re: [9fans] Making available a pre-compiled go binary for Miller's plan-9 Pi image Topicbox-Message-UUID: a746369a-ead9-11e9-9d60-3106f5b1d025 Thanks David, I will give this a try. Chris On Oct 28, 2016, at 2:58 AM, David du Colombier <0intro@gmail.com> wrote: >> 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 >