-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Linux: | ||
|
||
Target linux/amd64 | ||
GOOS=linux GOARCH=amd64 make tarball | ||
|
||
Target linux/386: | ||
GOOS=linux GOARCH=386 make tarball | ||
|
||
Target linux/armv5 | ||
GOOS=linux GOARCH=arm GOARM=5 make tarball | ||
|
||
Target linux/armv6 | ||
GOOS=linux GOARCH=arm GOARM=6 make tarball | ||
|
||
Target linux/armv7 | ||
GOOS=linux GOARCH=arm GOARM=7 make tarball | ||
|
||
|
||
Mac: | ||
|
||
Target darwin/amd64 | ||
GOOS=darwin GOARCH=amd64 make tarball | ||
|
||
|
||
Windows: | ||
|
||
Target windows/386 | ||
GOOS=windows GOARCH=386 make tarball | ||
|
||
Target windows/amd64 | ||
GOOS=windows GOARCH=amd64 make tarball | ||
|