英文:
How to compile a program in Go
问题
我知道如何使用go run file.go
来运行Go文件,但我想将其编译为可执行文件。
当我查找时,我发现了6g
和6l
,但它们似乎已经过时了。
我想要的是:
go-compiler -o output file.go
英文:
I know how to run a file in go using go run file.go
, but I want to compile it to an executable.
When I looked up, I found about 6g
and 6l
and it seems like they are outdated.
I want something like:
go-compiler -o output file.go
答案1
得分: 2
你想要的是:
go build -o 可执行文件名 源代码.go
英文:
You want:
go build -o executable source.go
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论