Golang构建约束随机

时间:2014-10-13 18:10:46

标签: build compilation go

我在标题中有两个具有不同构建约束的go文件。

constants_production.go:

// +build production,!staging

package main

const (
  URL               = "production"
)

constants_staging.go:

// +build staging,!production

package main

const (
  URL               = "staging"
)

main.go:

package main

func main() {
  fmt.Println(URL)
}

当我执行go install -tags "staging"时,有时会打印production;有时,它打印staging。同样,当我做go install -tags "production"时,......

如何在每次构建时获得一致的输出?当我将staging指定为构建标志时,如何使其进行打印分段?当我将生产指定为构建标志时,如何使其打印生产?我在这里做错了吗?

1 个答案:

答案 0 :(得分:6)

go buildgo install如果看起来没有任何变化,则不会重建包(二进制) - 并且它对命令行构建标记中的更改不敏感。

查看此内容的一种方法是添加-v以在构建包时打印它们:

$ go install -v -tags "staging"
my/server
$ go install -v -tags "production"
(no output)

你可以通过添加-a标志来强制重建,这往往是过度的:

$ go install -a -v -tags "production"
my/server

...或者在构建之前触摸服务器源文件:

$ touch main.go
$ go install -a -tags "staging"

...或者在构建之前手动删除二进制文件:

$ rm .../bin/server
$ go install -a -tags "production"