如何在windows系统上为vscode配置c++环境
时间: 2023-04-08 08:01:29 浏览: 151
VSCode配置C++环境的方法步骤(MSVC)
5星 · 资源好评率100%
你可以按照以下步骤为VSCode配置C环境:
1. 安装MinGW-w64,下载地址为:https://sourceforge.net/projects/mingw-w64/files/latest/download
2. 安装完成后,打开VSCode,按下Ctrl+Shift+P,输入“C/C++: Edit Configurations”,选择“Edit Configurations(JSON)”
3. 在打开的文件中添加以下内容:
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [],
"compilerPath": "C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
4. 修改“compilerPath”为你安装的MinGW-w64的gcc.exe路径
5. 保存文件后,重新打开VSCode,即可在C文件中使用自动补全和语法检查功能。
希望这个回答能够帮到你!
阅读全文