如何配置VScode c/c++ 环境:

一、安装MInGW

安装下载地址:

https://sourceforge.net/projects/mingw/files/latest/download

(安装过程需要外网下载)

  1. 安装 gcc,g++,gdb选择以下组件:
    mingw32-gcc-binmingw32-gcc-g++-binmingw32-gdb-bin
  2. 检查是否安装成功:
    D:\MinGW\bin目录下查看,如果能找到下面这三个可执行文件,说明安装成功。
  3. vscode 环境变量python vscode怎么配置环境变量_g++

二、c/c++环境变量配置

  1. 设置MinGW环境变量:(Win10系统)
    找到“我的电脑”->“属性”,选择“高级系统设置”->“环境变量”:
    找到下方的环境变量框,选择“新建”,之后填写MinGW的安装路径,如下所示:
  2. vscode 环境变量python vscode怎么配置环境变量_vscode 环境变量python_02

  3. 设置Path变量:
    在上方的用户变量中选中 Path点击“编辑”,在弹出的框中选中"新建",之后填写此段声明%MinGW\bin,之后点击确认。
  4. vscode 环境变量python vscode怎么配置环境变量_c++_03

  5. 检查环境是否配置成功:
    打开命令行,输入 gcc -v查看编译器版本,如下图所示:
  6. vscode 环境变量python vscode怎么配置环境变量_vscode 环境变量python_04

  7. 如果显示上述结果,则 c / c++环境配置成功。

三、在Vscode上安装cpptools插件

  1. 找到 c/c++插件并下载:

vscode 环境变量python vscode怎么配置环境变量_c++_05

  1. 创建一个新文件夹 .test:

vscode 环境变量python vscode怎么配置环境变量_json_06

  1. 并在该文件夹下创建一个新的文件 helllo.cpp:

vscode 环境变量python vscode怎么配置环境变量_json_07

vscode 环境变量python vscode怎么配置环境变量_json_08

  1. 再在 .test文件夹下创建一个文件夹 .vscode

vscode 环境变量python vscode怎么配置环境变量_vscode 环境变量python_09

  1. .vscode文件夹下创建三个文件如下所示:
  1. aunch.json 注意
    修改miDebuggerPath为你自己的路径:
{  
      "version": "0.2.0",  
      "configurations": [  
          {  
              "name": "(gdb) Launch", // 配置名称,将会在启动配置的下拉菜单中显示  
              "type": "cppdbg",       // 配置类型,这里只能为cppdbg  
              "request": "launch",    // 请求配置类型,可以为launch(启动)或attach(附加)  
              "program": "${fileDirname}/${fileBasenameNoExtension}.exe",// 将要进行调试的程序的路径  
              "args": [],             // 程序调试时传递给程序的命令行参数,一般设为空即可  
              "stopAtEntry": false,   // 设为true时程序将暂停在程序入口处,一般设置为false  
              "cwd": "${workspaceFolder}", // 调试程序时的工作目录,一般为${workspaceFolder}即代码所在目录  
              "environment": [],  
              "externalConsole": true, // 调试时是否显示控制台窗口,一般设置为true显示控制台  
              "MIMode": "gdb",  
              "miDebuggerPath": "D:MinGW\\bin\\gdb.exe", // miDebugger的路径,注意这里要与MinGw的路径对应  
              "setupCommands": [  
                  {   
  		            "description": "Enable pretty-printing for gdb",  
                      "text": "-enable-pretty-printing",  
                      "ignoreFailures": true  
                  }  
              ],
              "preLaunchTask": "build hello world"//和tasks中label保持一致
          }  
      ]  
  }
  1. tasks.json
{
      // See https://go.microsoft.com/fwlink/?LinkId=733558 
      // for the documentation about the tasks.json format
      "version": "2.0.0",
      "tasks": [
          {
          "label": "build hello world",
          "type": "shell",
          "command": "g++",
          "args": [
              "-g",
              "${file}",
              "-o",
              "${fileDirname}\\${fileBasenameNoExtension}.exe"
          ],
          "group": {
              "kind": "build",
              "isDefault": true
          }
          }
      ]
  }
  1. c_cpp_properties.json 注意
    修改compilerPath 路径
```c
 {
      "configurations": [
          {
            "name": "Win32",
            "includePath": ["${workspaceFolder}/**"],
            "defines": ["_DEBUG", "UNICODE", "_UNICODE"],
            "windowsSdkVersion": "10.0.17763.0",
            "compilerPath": "D:\\MinGW\\bin\\g++.exe",
            "cStandard": "c11",
            "cppStandard": "c++17",
            "intelliSenseMode": "${default}"
          }
        ],
        "version": 4
  }
  1. 好了,到现在所有准备工作以及完成,最后 回到 hello.cpp文件,按住F5编译文件,成功!!!!

vscode 环境变量python vscode怎么配置环境变量_vscode 环境变量python_10

四、有感而发

之前早就下载了 VScode但是一直都没有尝试过配置 C/C++插件,这次也是想尝试一下试试这被赞誉无数的 VScode(之前一直用的是 Visual c++哈哈哈),在网上找了很多教程才配置成功,就此过程也写下了自己的第一篇博客嘿嘿,也非常感谢这些博主的文章,明白了看官方文档的重要性。本人也是一个编程萌新,有不足之处请大佬指正。