rust vscode配置_VScode 配置rust开发环境

本文档详细介绍了如何在Windows环境下使用Visual Studio Code配置Rust项目的debug模式。首先,从Rust官方网站下载并安装msvc版本。接着,通过Cargo创建新的Rust工程。然后,在VSCode中安装必要的插件,如Rust Analyzer和Native Debug,并配置launch.json文件以启动调试。现在,你已经成功设置了Rust的调试环境。
摘要由CSDN通过智能技术生成

记录一下在Visual Studio Code中配置Rust debug模式。

Rust 版本

安装Rust,具体到官网下载 https://www.rust-lang.org/,

由于我在windows环境上,因此安装了msvc版本

Default host: x86_64-pc-windows-msvc

rustup home: D:\Users\xxx\.rustup

stable-x86_64-pc-windows-msvc (default)

rustc 1.46.0 (04488afe3 2020-08-24)

cargo 1.46.0 (149022b1d 2020-07-17)

用Cargo运行如下命令新建工程

PS D:\vstest\main> cargo new RustDemo

Created binary (application) `RustDemo` package

VSCode配置

​安装三个插件

Rust for Visual Studio Code

rust-analyzer

Native Debug

修改launch.json

/* launch.json */

{

// 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) Launch"

"type":"cppvsdbg",

"request": "launch",

"program": "${workspaceFolder}/target/debug/RustDemo.exe",

"args": [],

"cwd": "${workspaceFolder}"

}

]

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值