在 Visual Studio Code 和 Delve Debugger 中使用标签调试 Go
使用构建标签编译不同版本的 Go 程序时,您可能会遇到在 Visual Studio Code (VSCode) 中调试标记版本面临的挑战。本文探讨了使用预启动任务和正确的启动配置的解决方案。
Visual Studio Code Go 插件允许您使用“buildFlags”键指定构建标记。该键的值为“-tags Tag”,其中“Tag”是您要使用的特定构建标签。可以为每个构建标签创建单独的启动配置。
使用标签构建
要使用相应标签构建二进制文件,请在tasks.json 中创建一个任务文件:
<code class="json">{ ... "tasks": [ { "taskName": "buildBinWithTag", "command": "go", "args": ["build", "-o", "BinaryName", "-tags", "THISISATAG"], "isShellCommand": true } ] }</code>
使用标签进行调试
在 launch.json 文件中,为每个目标构建标签添加启动配置:
{ ... "configurations": [ { "name": "DebugBinWithTag", //added config "type": "go", "request": "launch", "mode": "exec", "remotePath": "", "port": 2345, "host": "127.0.0.1", "program": "${workspaceRoot}/BinaryName", "env": {}, "args": [], "showLog": true, "preLaunchTask": "buildBinWithTag" } ] }
通过在调试器启动之前运行预启动任务,您可以确保二进制文件是使用正确的标签构建的。该解决方案允许您在 VSCode 中使用构建标签无缝调试不同版本的 Go 程序。
以上是如何在 Visual Studio Code 中调试带标签的 Go 程序?的详细内容。更多信息请关注PHP中文网其他相关文章!