如何在可视代码中使用launch.json添加args

时间:2018-11-15 16:06:06

标签: c debugging visual-studio-code

如何使我的参数通过?

例如使用以下命令:

bin/a.out --num-cols 2 --num-rows 3 

在我的launch.json中,我有:

 {
        "name": "(lldb) Launch",
        "type": "cppdbg",
        "request": "launch",
        "program": "${workspaceFolder}/bin/a.out",
        "args": ["--num-rows 8","--num-cols 12"],
        "stopAtEntry": false,
        "cwd": "${workspaceFolder}",
        "environment": [],
        "externalConsole": false,
        "MIMode": "lldb"
    }

调试遍历遍历了我的args。 有人可以帮我解决这个问题吗?谢谢

0 个答案:

没有答案