当前位置:   article > 正文

记录 | vscode pyhton c++调试launch.json配置_vscode中launch.json文件怎么配置python justmycode

vscode中launch.json文件怎么配置python justmycode

下面提供 vscode 中 python 和 c++ 调试配置的 launch.json (好用,已用好几年,建议收藏)

{
  // 使用 IntelliSense 了解相关属性。 
  // 悬停以查看现有属性的描述。
  // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "name": "python debug",
      "type": "python",
      "request": "launch",
      "program": "${file}",
      "console": "integratedTerminal",
      "python": "/root/anaconda3/envs/py385/bin/python",
      "justMyCode": true,
      "cwd": "${fileDirname}"
    },
    {
      "name": "gdb debug",
      "type": "cppdbg",
      "request": "launch",
      "program": "/workspace/pro/facedet/build/release/facedet",
      "args": [],
      "miDebuggerPath": "/usr/bin/gdb",
      "stopAtEntry": false,
      "cwd": "${fileDirname}",
      // "cwd": "/workspace/pro/",
      "environment":  [],
      "externalConsole": false,
      "MIMode": "gdb",
      "setupCommands": [
        {
          "description": "为 gdb 启用整齐打印",
          "text": "-enable-pretty-printing",
          "ignoreFailures": true
        }
      ]
    }
  ]
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39

若要配置传参,比如 python 调试的时候添加传参 (因为很多 py 脚本执行的时候都喜欢用 --xxx 来传参,这样调试的时候就不方便了),这个时候可以在 launch.json 中添加 args 参数
在这里插入图片描述
c++ 同理

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/461243
推荐阅读
相关标签
  

闽ICP备14008679号