rust debug之基于pdb

Posted cutepig

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rust debug之基于pdb相关的知识,希望对你有一定的参考价值。

方法一:

用visual studio

 

步骤:

安装msvc工具链 rustup toolchain install stable-x86_64-pc-windows-msvc

切换到该工具链 rustup default stable-x86_64-pc-windows-msvc

编译代码 F:\\rust_test\\t1>cargo build
   Compiling t1 v0.1.0 (F:\\rust_test\\t1)
    Finished dev [unoptimized + debuginfo] target(s) in 1.71s

 

调试F:\\rust_test\\t1>"C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\IDE\\devenv.exe" F:\\rust_test\\t1\\target\\debug\\t1.exe

然后你就可以下断电了

 

方法二:用vscode

参考链接 https://www.brycevandyk.com/debug-rust-on-windows-with-visual-studio-code-and-the-msvc-debugger/

步骤

安装拓展 

  • C/C++: Brings in support for debugging MSVC applications. Since we‘re using MSVC behind the scenes, this gives us some debugging support for our Rust programs.
  • Native Debug: Allows us to set breakpoints by clicking next to line numbers.

配置

技术图片

 

 

 技术图片

 

遗留问题

在debug的时候vscode总是找不到代码

但是goto definition是对的

 暂时解决方案: xcopy /c/d/e C:\\Users\\cutep\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust g:\\rustc\\fc50f328b0353b285421b8ff5d4100966387a997

 

以上是关于rust debug之基于pdb的主要内容,如果未能解决你的问题,请参考以下文章

Rust编程语言入门之Rust的面向对象编程特性

「Rust进阶笔记」Rust之derive特性总结

rust+wasm写前端真香之请求数据.md

Electron替代方案,rust跨平台GUI框架TAURI之hello world

rsgrad程序:基于Rust语言的VASP任务监测

Python 代码使用pdb调试技巧