< 返回我的博客

hbgjh 发表于 2021-02-24 09:03

0.前提是 https://marketplace.visualstudio.com/items?itemName=rust-lang.rust 完成vscode安装

1.在vscode中安装 https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools

2.配置 VS Code

现在 VS Code 工具已经安装完成,接下来需要配置你的 VS Code 启动项。

点击 调试 -> 添加配置
如果你使用的是 Windows,选择 C++ (Windows)
如果你使用的是 Mac/Linux,选择 LLDB: Custom Launch

添加配置应该会创建并打开启动配置文件 launch.json。 你必须手动修改配置项 "program" 对应的可执行文件名称。

{ // 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": "(Windows) 启动", "type": "cppvsdbg", "request": "launch", "program": "${workspaceRoot}/target/debug/HiRust2020.exe", //注意 "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "console": "externalTerminal" } ] }

注意:别忘了在VSCODE file配置中勾上启用断点

评论区

写评论

还没有评论

1 共 0 条评论, 1 页