doudu8291 2019-02-26 16:36
浏览 454
已采纳

如何使用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?

  • 写回答

1条回答 默认 最新

  • douweicheng5532 2019-02-26 16:52
    关注

    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
        }
      ]
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多址通信方式的抗噪声性能和系统容量对比
  • ¥15 winform的chart曲线生成时有凸起
  • ¥15 msix packaging tool打包问题
  • ¥15 finalshell节点的搭建代码和那个端口代码教程
  • ¥15 Centos / PETSc / PETGEM
  • ¥15 centos7.9 IPv6端口telnet和端口监控问题
  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 海浪数据 南海地区海况数据,波浪数据
  • ¥20 软件测试决策法疑问求解答