如何在 Go 中编译程序
How to compile a program in Go
我知道如何使用 go run file.go
在 go 中 运行 文件,但我想将其编译为可执行文件。
当我抬头时,我发现了 6g
和 6l
并且它们似乎已经过时了。
我想要这样的东西:
go-compiler -o output file.go
你想要:
go build -o executable source.go
我知道如何使用 go run file.go
在 go 中 运行 文件,但我想将其编译为可执行文件。
当我抬头时,我发现了 6g
和 6l
并且它们似乎已经过时了。
我想要这样的东西:
go-compiler -o output file.go
你想要:
go build -o executable source.go