VS Code 配置 C/C++编译环境

VS Code 配置 C/C++编译环境

Zephyr

一 . MinGW下载

下载地址:https://sourceforge.net/projects/mingw-w64/files/mingw-w64/mingw-w64-release/

选择红色框里的x86_64-posix-seh

下载后打开解压到你想要的位置。

二. 配置系统环境

  1. 打开编辑系统变量 ;

  2. 打开系统变量里的Path;

  3. 新建变量, 将刚才解压后的MinGW里Bin文件夹的绝对路径添加进去;

  4. 保存并退出。

三. VS Code,插件下载

  1. 下载VS Code本体软件

  2. 安装C/C++插件

  3. 安装好插件后重新打开VS Code.

四. 配置文件

1. tasks.json, launch.json配置

注意: 先配置tasks.json , 再配置launch.json.

以自己实际情况, 按照以下配置代码里的注释来配置.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//tasks.json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++ Debug",
"command": "D:/MinGW/mingw64/bin/gcc.exe", // gcc.exe的路径
"command": "D:/MinGW/mingw64/bin/g++.exe", //g++.exe的路径
"args": [
// 输入给终端的参数
"-fdiagnostics-color=always",
"",
"-g",
"${file}",
"-o",
"${fileDirname}/bin/${fileBasenameNoExtension}.exe",//生成exe文件的路径(不支持中文命名C/C++文件)
//"${fileDirname}/bin/test.exe",//生成exe文件的路径(支持中文命名C/C++文件)
"-fexec-charset=GBK",//编码格式(按照GBK格式输出可以显示中文字符)
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "(gdb) Launch",
"preLaunchTask": "C/C++ Debug",//调试前执行的任务,就是之前配置的tasks.json中的label字段
"type": "cppdbg",//配置类型,只能为cppdbg
"request": "launch",//请求配置类型,可以为launch(启动)或attach(附加)
"program": "${fileDirname}/bin/${fileBasenameNoExtension}.exe",//调试程序的路径名称(不支持中文命名C/C++文件)
//"program": "${fileDirname}/bin/test.exe",//调试程序的路径名称(支持中文命名C/C++文件)
"args": [],//调试传递参数
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,//true显示外置的控制台窗口,false显示内置终端
"MIMode": "gdb",

// gdb.exe的路径
"miDebuggerPath": "D:/MinGW/mingw64/bin/gdb.exe",

"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}

2. C/C++插件配置

  1. 按住Ctrl+Shift+p , 搜索找到C/C++: Edit Configurations (Ul)并打开.
  2. 找到编译器路径选项, 选择MinGW里Bin夹的g++.exe.
  3. 重新打开VS Code.

至此已完成VS Code配置C/C++编译环境.