VS code部署RUST运行环境

开始以前

一、安装rust
rust 安装地址
shell

二、切换到json

msvc toolchain by rustup default stable-x86_64-pc-windows-msvcwindows

三、安装VSCODE
VS Code 安装地址
测试

安装语言环境

  • 安装rls扩展

安装rls

  • 安装Native Debug扩展
    Native扩展
  • 扩展rust-analyzer
    分析扩展

搭建测试环境

  1. 在工程目录下新建.vscode目录
  2. 在新建的 .vscode 文件夹里新建两个文件 tasks.json 和 launch.json,文件内容以下:

tasks.json 文件ui

{ 
    "version": "2.0.0", 
    "tasks": [ 
        { 
            "label": "build", 
            "type": "shell", 
            "command":"cargo", 
            "args": ["build"] 
        } 
    ] 
}

launch.json 文件(适用在 Windows 系统上)url

{ 
    "version": "0.2.0", 
    "configurations": [ 
        { 
            "name": "(Windows) 启动", 
            "preLaunchTask": "build", 
            "type": "cppvsdbg", 
            "request": "launch", 
            "program": "${workspaceFolder}/target/debug/${workspaceFolderBasename}.exe", 
            "args": [], 
            "stopAtEntry": false, 
            "cwd": "${workspaceFolder}", 
            "environment": [], 
            "externalConsole": false 
        }, 
        { 
            "name": "(gdb) 启动", 
            "type": "cppdbg", 
            "request": "launch", 
            "program": "${workspaceFolder}/target/debug/${workspaceFolderBasename}.exe", 
            "args": [], 
            "stopAtEntry": false, 
            "cwd": "${workspaceFolder}", 
            "environment": [], 
            "externalConsole": false, 
            "MIMode": "gdb", 
            "miDebuggerPath": "这里填GDB所在的目录", 
            "setupCommands": [ 
                { 
                    "description": "为 gdb 启用整齐打印", 
                    "text": "-enable-pretty-printing", 
                    "ignoreFailures": true 
                } 
            ] 
        } 
    ] 
}

结尾

配置成功!!!!
在这里插入图片描述
spa

相关文章
相关标签/搜索