1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/gox.md

21 lines
492 B
Markdown
Raw Normal View History

2019-05-12 13:59:07 -04:00
# gox
> Cross-compile Go programs.
2019-06-07 12:00:26 +01:00
> More information: <https://github.com/mitchellh/gox>.
2019-05-12 13:59:07 -04:00
- Compile Go program in the current directory for all operating systems and architecture combinations:
`gox`
- Download and compile a Go program from a remote URL:
`gox {{url_1}} {{url_2}}`
- Compile current directory for a particular operating system:
`gox -os="{{os}}"`
- Compile current directory for a single operating system and architecture combination:
`gox -osarch="{{os}}/{{arch}}"`