英文:
Where to define Build Tags in Goland from intellij editor?
问题
在我的Go项目中,根据Go构建标签使用了各种不同的包,例如:
使用 XXXX
//go:build XXXX
// +build XXXX
或者
不使用 XXXX
//go:build !XXXX
// +build !XXXX
我如何在使用 Goland 进行调试时定义这样的构建阶段 XXXX,根据调试的需要,例如使用 XXXX 或者不使用 XXXX?
英文:
In my go project various packages are used based on the go build tags e.g.
with XXXX
//go:build XXXX
// +build XXXX
or
without XXXX
//go:build !XXXX
// +build !XXXX
How I can define such build stage XXXX while doing debugging with goland , based on the debugging need e.g. with XXXX or without XXXX
答案1
得分: 2
请按照以下步骤进行操作:
- 打开 Goland。
- 进入 "Run/Debug configurations"。
- 在 "Go Tool Arguments" 中添加参数,例如:-tags build-variable-name。
- 保存配置。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论