PHP小编新一在本文中将为大家解答一个关于 `Go build` 命令的问题,即 `-o` 输出标志是否有副作用。在使用 `go build` 命令编译 Go 语言程序时,我们可以通过
PHP小编新一在本文中将为大家解答一个关于 `Go build` 命令的问题,即 `-o` 输出标志是否有副作用。在使用 `go build` 命令编译 Go 语言程序时,我们可以通过 `-o` 标志指定输出文件的名称。那么,这个标志会不会对源代码或其他文件产生任何副作用呢?接下来,我们将对这个问题进行详细的解析。
来自 go build
的文档页面:
The -o flag forces build to write the resulting executable or object to the named output file or directory, instead of the default behavior described in the last two paragraphs. If the named output is an existing directory or ends with a slash or backslash, then any resulting executables will be written to that directory.
但是我遇到的构建过程本质上是:
go build -o foo src/
mv foo bar
是否有我在文档中找不到的这样做的原因?例如。它是否将链接器符号名称设置为 foo
或类似的名称?或者这只是一个我可以放心忽略的怪癖?
通过查看具有相同源和不同 -o
标志的 go build
生成的二进制文件的校验和,这些文件绝对相同。所以没有副作用。
以上就是`go build` 的输出标志 `-o` 有副作用吗?的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: `go build` 的输出标志 `-o` 有副作用吗?
本文链接: https://lsjlt.com/news/563540.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0