为什么Go程序需要运行时支持?

huangapple go评论73阅读模式
英文:

Why Go Programs need runtime support

问题

Golang被称为一种“编译型”语言,但是“编译型”是什么意思呢?如果Golang应用程序被编译成机器码,为什么我不能只分发二进制文件(当然是对应的架构和平台),而不是使用go install这样的方式呢?

英文:

It's said that Golang is the compiled language, but what does it mean by compiled? If golang application is compiled to machine code, why can't I just distribute the binary (of course on corresponding arch and platform) instead of go install stuff?

答案1

得分: 18

一旦你编译了一个二进制文件,你可以将它分发到具有相同架构的机器上。go installgo run等只是编译过程中必要的步骤。

英文:

Once you compile a binary you can distribute it onto machines with the same architecture. go install, go run, etc. is just necessary for compilation.

huangapple
  • 本文由 发表于 2014年4月15日 08:58:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/23072889.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定