Last active
December 20, 2015 22:39
-
-
Save dustin/6207012 to your computer and use it in GitHub Desktop.
my x-compile script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| hg purge -v --all | |
| ./make.bash | |
| for os in darwin freebsd linux netbsd openbsd plan9 windows | |
| do | |
| for arch in 386 amd64 arm | |
| do | |
| env GOOS=$os GOARCH=$arch ./make.bash --no-clean | |
| done | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment