Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fhs/go-plan9-binaries
Go binaries for Plan 9
https://github.com/fhs/go-plan9-binaries
Last synced: about 7 hours ago
JSON representation
Go binaries for Plan 9
- Host: GitHub
- URL: https://github.com/fhs/go-plan9-binaries
- Owner: fhs
- License: bsd-3-clause
- Created: 2020-10-02T21:50:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T04:24:54.000Z (over 1 year ago)
- Last Synced: 2024-11-12T07:41:21.974Z (2 months ago)
- Size: 8.79 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-plan9-binaries
Download Go binaries for Plan 9. Go is cross-compiled on linux for all supported architectures: amd64, 386 and arm.
The build happens automatically using a GitHub Action when a release tag is pushed.## Installation
Example installation of go1.16.3 on amd64:
```
cd /amd64
hget https://github.com/fhs/go-plan9-binaries/releases/download/go1.16.3/go-plan9-amd64-bootstrap.tbz > go-plan9-amd64-bootstrap.tbz
tar xf go-plan9-amd64-bootstrap.tbz
rm go-plan9-amd64-bootstrap.tbz
mv go-plan9-amd64-bootstrap go
bind -b /amd64/go/bin /bin
GOROOT=/amd64/go
go version # should print "go version go1.16.3 plan9/amd64"
```## See also
* [Go binaries at 9legacy.org](http://9legacy.org/download.html)