package
0.0.0-20220402211705-e8f61d795eeb
Repository: https://github.com/esripdx/geobin.io.git
Documentation: pkg.go.dev
# README
Cross-compiled Build
This assumes you have set up the Go environment required to compile for your destination.
- For cross compilation setup, see this blog from Dave Cheney
To produce a default tar.gz targeted at linux/amd64:
> go run build.go
If you want to build for a different OS and Arch:
> go run build.go -os myOS -arch myArch
As an example, to build for 32-bit windows:
> go run build.go -os windows -arch 386