1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 07:35:24 +02:00

go-build: apply suggestions

Signed-off-by: gonejack <igonejack@gmail.com>
This commit is contained in:
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

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`