Rust Windows环境搭建

该文章主要讲述在windows10+vscode下如何构建一个完整的rust编译调试环境,以及过程中可能出现的问题。

Rust构造

rust 官方提供了一系列版本、包安装管理工具,如rustup和cargo。

基本组件

rustup

初始化

从rustup.rs官网下载rustup-init.exe(其他平台同理),这个软件是一个初始配置包,会帮助你下载选择版本的rustup和cargo。

打开软件后会显示如下信息(translated):

Welcome to Rust!
欢迎来玩Rust!

This will download and install the official compiler for the Rust programming
language, and its package manager, Cargo.
本向导将会下载并安装Rust官方编译器与包管理工具Cargo。

It will add the cargo, rustc, rustup and other commands to Cargo's bin
directory, located at:
接下来会将cargo、rustc、rustup等二进制文件下载到Cargo的bin文件夹下:

  ~\.cargo\bin

This path will then be added to your PATH environment variable by modifying the
HKEY_CURRENT_USER/Environment/PATH registry key.
该路径将会添加至当前用户的PATH环境变量中。

You can uninstall at any time with rustup self uninstall and these changes will
be reverted.
你可以自由卸载,并恢复至初。

Current installation options:
当前安装参数:

   default host triple: x86_64-pc-windows-msvc
     default toolchain: stable
  modify PATH variable: yes

1) Proceed with installation (default)     确认并安装(默认)
2) Customize installation                  自定义安装
3) Cancel installation                     取消安装
> _

默认安装于用户目录下。

该软件默认检查环境变量CARGO_HOMERUSTUP_HOME,分别为.cargo.rustup设置目录,按需修改(需要注意的是后期包的累积可能会占用巨量的存储空间)。

安装过程中请选择第二项 “Customize installation” !注意到default host triple中设置的是x86_64-pc-windows-msvc,而由于本文所使用的调试器是GDB,故需要修改为x86_64-pc-windows-gnudefault toolchain请选择stable,即稳定版。nightly为前瞻版(更新频率快),'beta’为测试版,实际使用时我们仍需使用到nightly版,后文会提到。

等待下载完成后可在path中检查添加~/.cargo/bin以使用各种命令。

输入rustup --version以检查是否安装成功。

setting.toml

TOML(Tom’s Obvious Minimal Language) 是一个想要打败yuml的标注语言,caogo项目也有使用。

该文件位于.rustup/下。

  • default_host_triple: 第一次安装时设置,只能对该文件进行修改以改变默认值。
  • default_toolchain : 默认使用的toolchain,可由rustup default 进行修改。

rustup命令

以下列出rustup的部分命令:

  • > rsutup show : 列出现在使用的和已安装的rust版本。
  • > rustup update : 更新所有已安装版本,由于nightly偶尔会爆肝日更,所以谨慎更新。
  • > rustup default: 设置将要使用的版本。
  • > rustup component : 列出(list)、安装(add)、移除(remove)组建。

加速

此处使用科大源为例,修改环境变量如下:

  • RUSTUP_DIST_SERVER : https://mirrors.ustc.edu.cn/rust-static
  • RUSTUP_UPDATE_ROOT : https://mirrors.ustc.edu.cn/rust-static/rustup

将同时加速cargo和rust,下载慢的可以体验一下w。

Cargo

cargo既是一个类似于npm、pip的包管理软件,又是一个像maven一样的项目框架。一个> cargo help可以让你懂得它有多nb。

build       编译当前包
check       检查当前包并寻出错误,但不进行编译
clean       删除编译结果(即target文件夹)
doc         构建当前包以及依赖项得文档
new         新建一个crate
init        以当前文件夹初始化一个crate
run         编译并执行src/main.rs
test        执行测试项
bench       执行基准测试项
update      更新所需的依赖项并预编译
search      搜索crates
publish     打包发布
install     安装cargo相关可执行文件,默认路径为 $HOME/.cargo/bin
uninstall   卸载相关可执行文件

更详细的介绍……点❤我❤看❤文。

集成于VS Code

再此之前,先设置一遍可能用到的环境变量。

  • RUST : 某toolchain的目录,如%USER%\.rust\toolchains\stable-x86_64-pc-windows-gnu
  • RUST_SRC_PATH : 改版本rust的源码目录,如%RUST%\lib\rustlib\src\rust\src,若你的rustlib中没有src,请执行> rustup component add rust-src
  • RUSTBINPATH : %CARGO_PATH%\bin

好,打开VS Code!

插件配置

Rust Windows环境搭建_第1张图片

商店搜索前两个就是几十万人下载的工具,两个都装上吧?前者是官方的包括rls在内的综合插件。后者虽然是第三方,但功能不比官方少。

你需要在settings.json文件中选择性键入以下内容(为第三方插件配置而不是官方):

    "rust.mode": "rls",
    "rust.cargoHomePath": "%CARGO_HOME%",
    "rust.cargoPath":"%RUSTBINPATH%\\cargo.exe",
    "rust.racerPath":"%RUSTBINPATH%\\racer.exe",
    "rust.rls":"%RUSTBINPATH%\\rls.exe",
    "rust.rustfmtPath":"%RUSTBINPATH%\\rustfmt.exe",
    "rust.rustup":"%RUSTBINPATH%\\rustup.exe",
    "rust.rustLangSrcPath": "%RUST_SRC_PATH%",
    "rust.executeCargoCommandInTerminal": true,

其中"rust.mode"能选择"legacy""rls",前者是使用racer、rustfmt、rustsym等独立的执行文件进行语法检测、跳转,而后者是一个集成的语言服务器。

很巧妙的是官方插件会为你提示是否提供权限安装nightly,请选择允许,并把你的default toolchain设置为nightly

> rustup default nightly
> rustup update
...
> rustup component add rust-analysis

漫长的安装完成后,写一个小程序试一试。

main.rs

fn main(){
    println!("fa ♂");
}

至此,基本能实现实时提示错误、高亮、用户片段。

常见错误

  1. 官方插件提示 RLS could not set RUST_SRC_PATH for Racer because it could not read the Rust sysroot.

    尝试使用以下方法:

    • 使用管理员模式启动Vs Code。
    • 确定各path位置正确。
    • 添加setting.json条目"rust-client.channel": "stable",或nightly。
    • 重新使用cargo建立一个项目

    错误原因如下

    stackoverflow:

    该插件 readme文件列出了如下依赖:

    • Rustup,
    • 一个toolchain (插件会在获得权限后自动安装),
    • RLS, rust-src, rust-analysis组件.
  2. 待补充

调试

LLDB很棒,但是有请我们的TDM-GDB出场(打扰了)。

从sourceforge上下载后,解压得到bin、gdb64、share至某目录(我的是D:\env)。

配置rust-gdb

之前下载的rust源码(%rust%\lib\rustlib)提供了一套gdb配置。

修改gdb64\bin目录下的gdbinit文件,在末尾添加以下代码:

python
print "-- loading rust pretty-printers --"
sys.path.insert(0,'%rust%/lib/rustlib/etc')
import gdb_rust_pretty_printing
gdb_rust_pretty_printing.register_printer(gdb)
end

执行(> bin\gdb.exe),若能输出”-- loading rust pretty-printers --“并没有报错,说明gdb工具配置成功。

配置Vs Code

安装Native Debug插件(ext install debug)。

用Vs Code打开你的Cargo工程,添加调试配置GDB,将target指向生成的exe文件,将gdbpath设置为刚刚配置的gdb.exe。

添加一个task,选择cargo build,设置为preLaunchTask

Rust Windows环境搭建_第2张图片

这时你的launch.json大致如下

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Debug",
            "type": "gdb",
            "request": "launch",
            "preLaunchTask": "cargo build",
            "target": "${workspaceRoot}\\target\\debug\\yourapplication.exe",
            "gdbpath": "D:\\env\\gdb-tdm64\\bin\\gdb.exe",
            "cwd": "${workspaceRoot}"
        }
    ]
}

快快创建断点测试一下吧!

你可能感兴趣的:(Rust Windows环境搭建)