duanjunao9348 2017-11-12 20:53
浏览 53
已采纳

我可以使用os / arch注释指令等自定义生成标志吗

In golang I am able to set compiler directives in the first line comment of a file to determine whether the code on that file is included in the build based on OS or arch, e.g

to target windows:

// +build windows

or non-windows:

// +build !windows

Is there any way to pass in my own boolean variable at build time to operate in the same way?

The background is that I would like a boolean debug flag which I can pass in to do a debug build, I don't want my debug code included in the normal build.

I currently do something like this:

go build -ldflags "-X main.Debug=true"

but I would prefer to use 1st line comment method particularly as this approach doesn't omit debug code from the build (I presume).

Ideally I want:

debug-on.go

// +build debug

package debug

func Debug() bool {
    return true
}

and debug-off.go

// +build !debug

package debug

func Debug() bool {
    return false
}

Update RE duplicate I accept the related question has the same subject matter but it's really not a duplicate question, that is a question from somebody who already knew about this feature but is struggling with implementation.

My 2 cents is that it seems the equivalent of "What language to people speak in France?" vs "How do you say 'This is not a duplicate' in French?"

  • 写回答

1条回答 默认 最新

  • duanreng3439 2017-11-12 21:27
    关注

    Command go

    Go is a tool for managing Go source code.

    Usage:

    go command [arguments]
    

    Compile packages and dependencies

    Usage:

    go build [-o output] [-i] [build flags] [packages]
    

    Build compiles the packages named by the import paths, along with their dependencies, but it does not install the results.

    The build flags are shared by the build, clean, get, install, list, run, and test commands:

    -tags 'tag list'
      a space-separated list of build tags to consider satisfied during the
      build. For more information about build tags, see the description of
      build constraints in the documentation for the `go/build` package.
    

    go/build package: Build Constraints


    For example, in source,

    // +build debug
    

    At runtime, for build, clean, get, install, list, run, and test go commands,

    $ go install -tags='debug'
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥15 Python3.5 相关代码写作
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗