go-build: apply suggestions

Signed-off-by: gonejack <igonejack@gmail.com>
client-spec/clarity
gonejack 2020-05-11 11:49:49 +08:00 committed by Starbeamrainbowlabs
parent 7221d87294
commit ae117a5437
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2
1 changed files with 14 additions and 6 deletions

View File

@ -1,12 +1,20 @@
# go build
> Tool for compiling packages and dependencies.
> More information: <https://golang.org/cmd/go/>.
> Compile Go sources.
> More information: <https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies>.
- Compile a source file into a named executable:
- Compile a file:
`go build -o {{executable}} {{path/to/main/file}}.go`
`go build path/to/main.go`
- Compile a main package into a named executable:
- Compile into named output:
`go build -o {{executable}} {{path/to/main/package}}`
`go build -o {{binary}} path/to/source.go`
- Compile a package:
`go build -o {{binary}} path/to/package`
- Compile a main package into an executable, with data race detection:
`go build -race -o {{executable}} path/to/main/package`