VScode是一款跨平台轻量级的代码编辑器,也是我目前最爱用的啦!以前都是用它写python,现在要学习C++,今天就记录一下在VScode里面配置C++开发环境的过程(win10 64位系统)。
安装MinGW。推荐安装MinGW64,因为它支持C++11多线程编程。(PS: 我最开始安装的MinGW32,但是在编译多线程代码的时候一直有问题,最后换成了MinGW64)
MinGW安装好之后看看系统的环境变量里面是否已经添加了它的路径,没有的话就自行添加(路径示例:D:\MinGW\bin)。安装好之后,打开cmd,输入g++ -v,可看到g++版本信息,说明安装成功。
这里不再叙述怎么安装VScode,我用的版本是1.28.2。
接下来,我们开始配置C++的开发环境,这里的配置只支持单个程序文件的编译和调试。现在需要做的是安装C++相关的插件和配置编译和调试的json文件。
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++",//这里的值要与launch.json中的 preLaunchTask 值一样
"command": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\g++.exe",//刚刚安装好的g++路径
"args": [
"-g",
"-Wall",
"-static-libgcc",
"-std=c++17",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin"//刚刚安装好的MinGW路径
},
"problemMatcher": [
"$gcc"
]
}
]
}
fileDirname 表示文件所在位置,这里也可以换成workspaceFolder(.vscode所在的主目录),不过前者支持在子目录下编译文件。
{
// 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",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}/${fileBasenameNoExtension}.exe",//也可以用workspaceFolder,不过一定要与task.json中的保持一致
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",//同上
"environment": [],
"externalConsole": true,//使用外部terminal
"MIMode": "gdb",
"miDebuggerPath": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\gdb.exe",//gdb的安装路径
"preLaunchTask": "g++",//表示在执行调试之前会先进行编译
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
好了,以上配置完毕,新建test.cpp文件,按下Ctrl+f5,成功编译且运行!
当然,我们也可以进行断点调试!接下来,各位看官自行探索其他功能。