VSCode是由微软开发的跨平台、免费且开源的代码编辑器。它支持多种编程语言和框架,包括JavaScript、TypeScript、Node.js、React、Angular等。VSCode具有智能代码补全、语法高亮、版本控制、实时错误检测和调试器等丰富的功能。此外,VSCode还拥有大量的插件和扩展,可以进一步增强编辑器的功能,满足不同开发者的需求。同时,它支持多种操作系统,例如Windows、macOS和Linux等。VSCode易于使用可扩展的特性使得它成为许多软件开发者的首选编辑器之一。
在 Visual Studio Code 官方网站上下载 VSCod。请访问 官方网站,然后选择适合你操作系统的版本进行下载。//一般下载Stable版本即可
在 VSCod 上配置 C/C++ 环境,需要安装并配置以下工具:
安装 C/C++ 编译器,如 GCC 或 Clang。
安装 C/C++ 调试器,如 GDB。
安装 C/C++ 插件,如 C/C++、Code Runner 等。
配置C/C++环境。
在 Windows 上,你可以下载并安装 MinGW-w64 工具集。官方网站:https://sourceforge.net/projects/mingw-w64/files/latest/download
在 macOS 上,你可以通过 Homebrew 安装 GCC:
brew install gcc
在 Linux 上,你可以通过包管理器安装 GCC 或 Clang:
sudo apt-get install build-essential
sudo apt-get install clang
笔者这里使用Windows
这是提示下载,还没有下载,自己点击下载,下载有点慢,等待一段时间
打开刚刚下载的文件加夹
通过打开控制面板—>系统的安全—>系统属性(或者右击“我的电脑”—>属性)找到“环境变量”
windows+r打开命令行管理器并且输入cmd
然后输入gcc -v,验证成功!
MinGW-w64 工具集,它包含了 GDB 调试器
打开VSCode,新建一个文件夹,在扩展栏搜索c/c++,安装第一个插件即可
#include<stdio.h>
int main()
{
printf("hello world");
return 0;
}
快捷键Ctrl+Shift+P调出命令面板,输入C/C++,选择图中选项进入配置
这里路径根据自己安装的Mingw编译器位置和配置环境变量位置所决定
IntelliSense 模式:gcc-x86
配置完成文件夹栏会多了一个.vscode文件夹,并且里面有一个c_cpp_properties.json文件夹
点击json文件,内容如下:
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"intelliSenseMode": "windows-gcc-x86"
}
],
"version": 4
}
快捷键Ctrl+Shift+P调出命令面板,输入tasks,选择图中选项进入配置
选择下列框选
出现一个tasks.json的配置文件,内容如下:
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc.exe 生成活动文件",
"command": "E:/Software/mingw64/bin/gcc.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "E:/Software/mingw64/bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "编译器: E:/Software/mingw64/bin/gcc.exe"
}
]
}
创建launch.json文件
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": []
}
添加配置:选择c/c++:(gdb)启动
跳转到launch.json文件,默认信息为:
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "输入程序名称,例如 ${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "/path/to/gdb",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "将反汇编风格设置为 Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}
在这里改两个地方:
1.复制下面内容
拷贝到这里
2.将这个路径改成下载模具路径中的gdb.exe(路径中有明显红的将单斜杠改成双斜杠)
修改完之后内容:
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "E:\\Software\\mingw64\bin\\gdb.exe",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "将反汇编风格设置为 Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}
调试成功!!!