『Rust』Rust运行情况搭建

打印 上一主题 下一主题

主题 1001|帖子 1001|积分 3003

rust编译工具rustup

https://www.rust-lang.org/zh-CN/tools/install
换源
  1. RUSTUP_DIST_SERVER https://rsproxy.cn
  2. RUSTUP_UPDATE_ROOT https://rsproxy.cn
复制代码
修改rustup和cargo的安装路径
  1. RUSTUP_HOME D:\rust\.rustup
  2. CARGO_HOME D:\rust\.cargo
复制代码
运行rustup-init.exe
  1. 1) Quick install via the Visual Studio Community installer
  2.    (free for individuals, academic uses, and open source).
  3. >1
  4. 1) Proceed with selected options (default - just press enter)
  5. >1
复制代码
将%CARGO_HOME%\bin
添加到PATH
  1. %CARGO_HOME%\bin
复制代码
安装后运行验证:
  1. rustc -V
  2. rustup -V
  3. cargo -V
  4. rustup show
复制代码
  1. C:\Users\Ho1aAs>rustc -V
  2. rustc 1.85.0 (4d91de4e4 2025-02-17)
  3. C:\Users\Ho1aAs>rustup -V
  4. rustup 1.28.1 (f9edccde0 2025-03-05)
  5. info: This is the version for the rustup toolchain manager, not the rustc compiler.
  6. info: The currently active `rustc` version is `rustc 1.85.0 (4d91de4e4 2025-02-17)`
  7. C:\Users\Ho1aAs>cargo -V
  8. cargo 1.85.0 (d73d2caf9 2024-12-31)
  9. C:\Users\Ho1aAs>rustup show
  10. Default host: x86_64-pc-windows-msvc
  11. rustup home:  D:\rust\.rustup
  12. installed toolchains
  13. --------------------
  14. stable-x86_64-pc-windows-msvc (active, default)
  15. active toolchain
  16. ----------------
  17. name: stable-x86_64-pc-windows-msvc
  18. active because: it's the default toolchain
  19. installed targets:
  20.   x86_64-pc-windows-msvc
复制代码
Visual Studio + VS Code

Visual Studio 2022 + Visual Studio Code 1.98.1
vscode安装扩展:Chinese + rust-analyzer + Native Debug + C/C++

(安装时可选)添加空白处右键、文件夹右键、文件右键以VSCode打开
  1. # 1.reg
  2. Windows Registry Editor Version 5.00
  3. [HKEY_CLASSES_ROOT\*\shell\VSCode]
  4. @="Open with Code"
  5. "Icon"="D:\\Microsoft VS Code\\Code.exe"
  6. [HKEY_CLASSES_ROOT\*\shell\VSCode\command]
  7. @=""D:\\Microsoft VS Code\\Code.exe" "%1""
  8. [HKEY_CLASSES_ROOT\Directory\shell\VSCode]
  9. @="Open with Code"
  10. "Icon"="D:\\Microsoft VS Code\\Code.exe"
  11. [HKEY_CLASSES_ROOT\Directory\shell\VSCode\command]
  12. @=""D:\\Microsoft VS Code\\Code.exe" "%V""
  13. [HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode]
  14. @="Open with Code"
  15. "Icon"="D:\\Microsoft VS Code\\Code.exe"
  16. [HKEY_CLASSES_ROOT\Directory\Background\shell\VSCode\command]
  17. @=""D:\\Microsoft VS Code\\Code.exe" "%V""
复制代码
测试编译

手动编译

新建~\Desktop\rust用vscode打开,cargo新建项目:cargo new rust-test

cd进项目,build和run即可编译为exe
  1. cd rust-test
  2. cargo build
  3. cargo run
  4. # || rust-test.exe
复制代码

VSCode编译设置

项目路径新建.vscode,在其中新建tasks.json和launch.json
  1. // tasks.json
  2. {
  3.     "version":"2.0.0",
  4.     "tasks":[
  5.         {
  6.             "label":"build",
  7.             "type":"shell",
  8.             "command":"cargo",
  9.             "args":["build"]
  10.         }
  11.     ]
  12. }
复制代码
launch.json需要微调,主要是Console标签谁人位置
  1. // launch.json
  2. {
  3.     "version":"0.2.0",
  4.     "configurations":[
  5.         {
  6.             "name":"Run Rust",
  7.             "preLaunchTask":"build",
  8.             "type":"cppvsdbg",
  9.             "request":"launch",
  10.             "program":"${workspaceFolder}/target/debug/${workspaceFolderBasename}.exe",
  11.             "args":[],
  12.             "stopAtEntry":false,
  13.             "cwd":"${workspaceFolder}",
  14.             "environment":[],
  15.         "console": "integratedTerminal",
  16.         }
  17.     ]
  18. }
复制代码
打断点调试

参考

   https://www.runoob.com/rust/rust-setup.html
  https://www.runoob.com/rust/cargo-tutorial.html
  

   欢迎关注我的CSDN博客 :@Ho1aAs
版权属于:Ho1aAs
本文链接:https://ho1aas.blog.csdn.net/article/details/146232471
版权声明:本文为原创,转载时须注明出处及本声明

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

傲渊山岳

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表