vscode go debug无法启动问题

如图,进度条总是处于滑动状态,始终无法启动程序:

vscode go debug无法启动问题

 

 

解决办法:

将文件单独拷贝至新的目录,只有一个go文件,重新创建launch.json,会生成.vscode目录

{     // 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": "Launch Package",             "type": "go",             "request": "launch",             "mode": "auto",             "program": "${fileDirname}"         }     ] } 此时debug启动文件,成功。 vscode go debug无法启动问题

 

 

  原因估计是因为文件在嵌套目录,导致找不到对应的launch.json文件,所以始终无法启动。
上一篇:ROS机械臂开发_MoveIt!与机械臂控制(六)


下一篇:c# – 将AAC转换为WAV