Eclipse环境安装rust
Posted zengkefu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse环境安装rust相关的知识,希望对你有一定的参考价值。
参考
https://rustdt.github.io/
https://github.com/RustDT/RustDT/blob/latest/documentation/UserGuide.md#user-guide
https://stackoverflow.com/questions/33570021/how-to-set-up-gdb-for-debugging-rust-programs-in-windows/33570022#33570022
1.安装RUST 语言工具
在https://www.rust-lang.org/zh-CN/other-installers.html下
rust-1.18.0-x86_64-pc-windows-gnu.msi
执行cargo install racer
2.下载tdm-gcc
http://tdm-gcc.tdragon.net/下的
tdm64-gcc-5.1.0-2.exe
安在装 C:\TDM-GCC-64\
3.下载eclipse
http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers/lunasr2
4.打开Eclipse,选择 Help -> Install New Software
,安装插件。插件地址:https://rustdt.github.io/releases/
5.在run configure 中 build command 下输入
${CARGO_TOOL_PATH} build
6.在debug configure 中 debugger 中输入
C:\TDM-GCC-64\gdb64\bin\gdb.exe
C:\TDM-GCC-64\gdb64\bin\gdbinit
7.下载rust源代码
https://www.rust-lang.org/zh-CN/other-installers.html
8.其他安操作操提示下载安装
以上是关于Eclipse环境安装rust的主要内容,如果未能解决你的问题,请参考以下文章
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段