1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:02:10 +02:00
tldr/pages/common/go-build.md
会有猫的 4cac843cae
go-*: apply additional suggestions
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2020-05-21 12:33:55 +01:00

490 B

go build

Compile Go sources. More information: https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies.

  • Compile a file:

go build {{path/to/main.go}}

  • Compile, specifying the output filename:

go build -o {{path/to/binary}} {{path/to/source.go}}

  • Compile a package:

go build -o {{path/to/binary}} {{path/to/package}}

  • Compile a main package into an executable, with data race detection:

go build -race -o {{path/to/executable}} {{path/to/main/package}}