Re: go under plan9 on the radpberry pi?
Matthew Veety <[email protected]>
| Newsgroups | gmane.os.plan9.general |
|---|---|
| Message-ID | <[email protected]> |
Building anything on a raspberry pi is a bit of a chore. I highly recommend running go on your cpu server and/or local to your filesystem. The generated binaries seem to work fine. I haven't found any bugs, but I haven't run anything serious on on my pis. On Thu, 19 Sep 2019, Michael Misch wrote: > I’ve used it, it works fine. Building on a raspberry pi, on the other hand is a chore when using Go. > >> On Sep 19, 2019, at 3:46 PM, Bakul Shah <[email protected]> wrote: >> >> On Thu, 19 Sep 2019 22:41:48 +0100 Steve Simon <[email protected]> wrote: >>> >>> does go run under plan9 on the radpberry pi or only on x86? >> >> I haven't tried a native build but cross-compiling with >> >> cd `go env GOROOT`/src >> GOOS=plan9 GOARCH=arm ./bootstrap.bash >> >> seems to work. bunzip2 the resulting .tbz file in $home & then >> bind -a $home/go-plan9-arm-bootstrap/bin /bin >> >> Only lightly tested. >> >