コマンド - Go

最終更新日: 2026-07-25

TOP(About this memo)) > 一覧(Go) > 標準ツール(cmd/go)

cmd/go ドキュメント

https://pkg.go.dev/cmd/go#section-documentation

go build

バイナリ

go buildの際のコンパイル対象

何もしないmain.goファイルをbuildすると、バイナリサイズは1.2MBくらいだった。

-rwxr-xr-x  1 user  staff  1177168 Mar 24 08:15 aaa

ビルドタグ

// +build foo
go build -tags foo

ldflags

-s
	Omit the symbol table and debug information.
-w
	Omit the DWARF symbol table.

go fmt(gofmt)

go generate