5 回答
TA贡献1790条经验 获得超9个赞
什么对我有用:
检查您的Mac正在使用的“芯片”,您可以从中检查
"About This Mac" > "Overview" > "Chip"
如果使用苹果芯片,则下载“arm64”类型的文件,例如“去达尔文-arm64.pkg”,“vscode-arm64”等。你明白我的观点。
如果使用英特尔芯片,请使用“amd”类型下载。
从 https://github.com/go-delve/delve/tree/master/Documentation/installation 下载并安装“DELVE”
运行调试器。
让我知道,如果你也想要“launch.json”文件配置,调试。
编辑 11-04-22
共享启动。
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": [],
}
]
}
TA贡献1831条经验 获得超9个赞
TA贡献1872条经验 获得超3个赞
- 5 回答
- 0 关注
- 266 浏览
添加回答
举报