本文主要记录VSCode配置C/C++开发环境的配置文件
主要参考官方文档(官方文档虽然是英文的,但是的确是最详细最靠谱最有用的,提高英语能力是真的很重要啊!),具体的步骤就照着官方的文档操作即可,下面是保存的.vscode
文件夹下的json配置文件
。
launch.json
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "g++.exe build and debug active file",//配置名称,将会在启动配置的下拉菜单中显示
"type": "cppdbg",//配置类型
"request": "launch",//请求配置类型,可以为launch(启动)或attach(附加)
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",//将要进行调试的程序的路径
"args": [],//程序调试时传递给程序的命令行参数,一般设为空即可
"stopAtEntry": false,//设为true时程序将暂停在程序入口处,一般设置为false
"cwd": "${workspaceFolder}",//调式程序时的工作目录
"environment": [],
"externalConsole": true,//调试时是否显示控制台窗口,一般设置为true显示控制台
"MIMode": "gdb",
"miDebuggerPath": "C:\\mingw64\\bin\\gdb.exe",//miDebugger的路径,注意这里要与MinGw的路径对应
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++.exe build active file" 调试会话开始前执行的任务,一般为编译程序,c++为g++, c为gcc
}
]
}
tasks.json
{
// 有关 tasks.json 格式的文档,请参见
// https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "g++.exe build active file",
"command": "C:\\mingw64\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\\mingw64\\bin"
},
"problemMatcher": [
"$gcc"
],
"group": "build"
}
]
}
c_cpp_properties.json
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:/mingw64/bin/g++.exe",
"intelliSenseMode": "${default}",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 4
}
settings.json(可不用)
{
"C_Cpp.default.cppStandard": "c++17",
"C_Cpp.default.cStandard": "c11"
}
注意: mingw-w64文件夹最好放在C盘根目录文件夹下,这样子可以减少出错