dongyaoxiu6244 2015-05-27 11:39
浏览 83
已采纳

Golang错误报告功能如何获取编译信息

How can a function establish the following details from the runtime so that it can craft appropriate error reporting as part of a error library to be used using in many products (we are changing over to golang):

  • Compilation date and time of the executable
  • Compilation machine used to create the executable

I would like to be able to retrieve both of these to augment the various file revision numbers that I can report along with some stack trace information

Useful related but off-topic information:
- You can get stack traces out of the runtime as illustrated here http://technosophos.com/2014/03/19/generating-stack-traces-in-go.html
- The reflect package http://golang.org/pkg/reflect/ can be used to examine an identified function

Thank you for your assistance,
Richard

  • 写回答

1条回答 默认 最新

  • dongzi1209 2015-05-27 11:44
    关注

    You can use the -X linker flag to set the value of a string variable when building:

    go build -ldflags "-X main.Uname '$(uname -a)' -X main.CompileTime '$(date)'"
    

    With such command, this code

    package main
    
    import "fmt"
    
    // Set by the linker.
    var CompileTime, Uname string
    
    func main() {
        fmt.Println(Uname)
        fmt.Println(CompileTime)
    }
    

    will print something like

    Linux user 3.13.0-53 Wed May 20 10:34:39 UTC 2015 x86_64 GNU/Linux
    Wed May 27 12:00:00 UTC 2015
    

    See the linker docs for more info.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 基于单片机的靶位控制系统
  • ¥15 AT89C51控制8位八段数码管显示时钟。
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错