VS Code 配置 C++ MinGW 运行环境
下载安装 MinGW
在 nuwen.net 或 MSYS2 下载最新版本的 MinGW 并安装。
MinGW 是什么
让我们问问 ChatGPT 吧。
Prompt
MinGW 是什么
Response
MinGW 是一个 Windows 平台上的开发工具集,它提供了一组用于在 Windows 上进行 C、C++ 和其他编程语言开发的工具和库。MinGW 的全称是 "Minimalist "GNU for "Windows",它的目标是在 Windows 平台上提供类似于 Unix 环境下的开发工具和环境。
添加环境变量
将 MinGW 的安装路径添加到用户的 Path 环境变量。
添加方法参见
环境变量添加好后,可以在 cmd 中运行 g++ --version
来测试是否添加成功了。
$ g++ --version
g++ (Rev3, Built by MSYS2 project) 13.2.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
配置 VS Code
安装 C/C++ 扩展
在 VS Code 中安装 C/C++ 扩展。
配置 .vscode
文件夹
创建 .vscode
文件夹,在里面创建 3 个文件,名字分别是:
c_cpp_properties.json
launch.json
tasks.json
它们的内容分别填入:
c_cpp_properties.json
json
{
"configurations": [
{
"name": "GCC",
"includePath": ["${workspaceFolder}/**"],
"defines": ["_DEBUG", "UNICODE", "_UNICODE"],
"windowsSdkVersion": "10.0.22000.0",
"compilerPath": "C:/msys64/ucrt64/bin/g++.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}
这里的 compilerPath
要按自己的 MinGW 安装目录来。
launch.json
json
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "E:\\Program Files\\MinGW\\bin\\gdb.exe",
"preLaunchTask": "g++",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
tasks.json
json
{
"version": "2.0.0",
"tasks": [
{
"label": "g++",
"command": "g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}.exe"
],
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
这些文件的作用参阅 Using GCC with MinGW 。
settings.json
在一篇 CSDN 热门博客 vscode配置C/C++环境 中,有介绍到配置 settings.json
文件。
但我发现只配置上述三个文件也能运行 C++ 代码,settings.json
的配置貌似不是必要的。
以后有需要再参阅 settings.json 去研究。
Hello, world
上述步骤都完成了,就可以运行 C++ 程序了,来写个 Hello, World 吧!
cpp
#include <iostream>
using namespace std;
int main(){
cout << "Hello, world!";
}