CLI and tooling
gova build
Compile a Gova binary to ./bin.
gova build is a convenience wrapper over go build that places the
output in a predictable location and applies the platform-appropriate
extension.
Flags
| Flag | Default | Meaning |
|---|---|---|
-o | ./bin/<basename> | Output path |
Notes
- Output directories are created on demand.
- On Windows, the output is suffixed with
.exeautomatically. - Build errors stream to stderr exactly as
go buildemits them, so editor integrations that parse compiler output continue to work.
For anything more complex than "put a binary in bin/," call go build
directly. gova build is deliberately thin.