英文:
Enable -race on compiled binary
问题
我正在尝试启用竞争检测器:https://go.dev/doc/articles/race_detector
由于我无法将源代码上传到测试服务器,我该如何启用-race
或编译启用了-race
的二进制文件呢?
英文:
I'm trying to enable the race detector: https://go.dev/doc/articles/race_detector
Since I can't upload the source code to the test server, how can I enable -race
or compile a binary with -race
enabled?
答案1
得分: 4
请将以下内容翻译为中文:
在你现在构建的过程中,根据你在问题中提供的链接中所述,添加-race
选项。
例如,
go build -race main.go
英文:
Add -race
to however you're building now, as stated in the document you've linked to in your question.
For example,
go build -race main.go
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论