On Fri, Oct 3, 2014 at 4:03 PM, Péter Szilágyi <
pet...@gmail.com> wrote:
> Hi all,
>
> Just wanted to announce that my xgo - cgo enabled cross compiler - was
> updated to use Go 1.3.3 thanks to the amazing Go team and Dave Cheney for
> providing the arm packages! Currently it only buils ARM v5, but this will be
> extended soon to build all three versions (5/6/7), just needs a docker
> hierarchy reorganization.
>
> And for a friendly usage example:
>
> $ docker pull karalabe/xgo-latest (optional, but it displays a progress
> report this way)
> $ go get
github.com/karalabe/xgo
> $ xgo -out iris-v0.3.1
github.com/project-iris/iris
>
> And voila:
> $ ls -al
> -rwxr-xr-x 1 root root
3103916 Oct 3 16:56 iris-v0.3.1-darwin-386
> -rwxr-xr-x 1 root root 3962284 Oct 3 16:56 iris-v0.3.1-darwin-amd64
> -rwxr-xr-x 1 root root 4201688 Oct 3 16:56 iris-v0.3.1-linux-386
> -rwxr-xr-x 1 root root 5222248 Oct 3 16:56 iris-v0.3.1-linux-amd64
> -rwxr-xr-x 1 root root 4171936 Oct 3 16:56 iris-v0.3.1-linux-arm
> -rwxr-xr-x 1 root root 4248064 Oct 3 16:56 iris-v0.3.1-windows-386.exe
> -rwxr-xr-x 1 root root 5268992 Oct 3 16:56
> iris-v0.3.1-windows-amd64.exe
>
> For more infos, command options and other goodies, head over to the
> project's intro page.