如何使用GoPATH和“ go module”模式下的所有使用过的软件包获取详细的构建日志?
I have situation with a project.
It behave different when i use go module, outside GOPATH, and "go get" inside GOPATH. In both cases build goes without errors.
But GPRC connection behaves differently. Gives timeout in "go mod" case, works fine with "go get".
I suspect that go uses different set of packages. I need full list of used packages with versions in both modes to compare. How can i access it?
我有一个项目的情况。 p>
当我使用它时,其行为会有所不同 go模块(位于GOPATH外部)和“ go get”(位于GOPATH内部)。 在这两种情况下,构建都不会出错。 p>
但是GPRC连接的行为有所不同。 在“ go mod”情况下给出超时,在“ go get”下可以正常工作。 p>
我怀疑go使用了不同的软件包集。 我需要两种模式下使用过的软件包的完整列表进行比较。 我如何访问它? p> div>
For listing installed packages using GOPATH
, please see this old thread: How to list installed go packages
The following applies to the new module mode.
At compile / build time
You may use the go list -m all
command to view final versions that will be used in a build for all direct and indirect dependencies (source). You can read more details about this here: Modules: Version Selection.
At runtime
At runtime (from your application) you may use the debug.ReadBuildInfo()
function:
ReadBuildInfo returns the build information embedded in the running binary. The information is available only in binaries built with module support.
Note: debug.ReadBuildInfo()
was only added in Go 1.12 (released just a day ago).
Example getting and printing build info (recursively). Easiest is to JSON-marshal the build info:
bi, ok := debug.ReadBuildInfo()
if !ok {
fmt.Println("Getting build info failed (not in module mode?)!")
return
}
enc := json.NewEncoder(os.Stdout)
enc.SetIndent("", " ")
if err := enc.Encode(bi); err != nil {
panic(err)
}
Example output
Example output for a project which has a single dependency: github.com/globalsign/mgo
).
Running go list -m all
:
mytest
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
Getting and JSON-marshaling the build info at runtime:
{
"Path": "mytest",
"Main": {
"Path": "mytest",
"Version": "(devel)",
"Sum": "",
"Replace": null
},
"Deps": [
{
"Path": "github.com/globalsign/mgo",
"Version": "v0.0.0-20181015135952-eeefdecb41b8",
"Sum": "h1:DujepqpGd1hyOd7aW59XpK7Qymp8iy83xq74fLr21is=",
"Replace": null
}
]
}