1、安装VSCode中的2个C语言插件;其次是(win10系统)下载winGW6,并且配置环境变量,最后是设置C语言配置文件。
(1)“C/C++ Extension Pack”插件 v1.3.0
(2)“code runner”插件
2、下载minGW64,链接地址
在“Files”标签中,根据参数选择文件包,下载(下载后是7z格式)。
参数选择:
64位电脑选择x86_64;32位电脑选择i686②写的C语言程序运行在windows下选择win32 ;
运行在其它操作系统下选择posix(这是一个协议,windows不遵循)64位电脑,seh比较新但不支持32位;s支持32位稳定性好,推荐选择seh,因为在安装程序中默认就是选seh。32位电脑,dwarf性能更优但不支持64位。
3、配置系统的环境变量,略。
4、C语言配置
要运行C语言的程序还需要2个配置文件。
(1)指定一个工作文件夹
在VSCode的资源管理器中打开一个文件夹,作为工作文件夹。
在这个文件夹下建立一个名为 .vscode 的文件夹,注意有个点!如果已经有了,就不用建立了。
(2)新建launch.json文件
在这个 .vscode 文件夹下新建2个文件作为配置文件。
第一个是 launch.json文件,输入如下内容。
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "F:\\mingw64\\mingw64-sjlj\\bin\\gdb.exe",
//**********上面这行,要修改为你的编译器所在的路径,形如 c:\\***\\bin\\gdb.exe
"preLaunchTask": "gcc", //这里注意一下这个名字一会儿还要用到
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": false
}
]
}
]
}
(3)新建tasks.json文件
还是在 .vscode 文件夹下,新建一个tasks.json文件,输入如下内容。
{
"version": "2.0.0",
"command": "gcc",
"args": [
"-Os",
"${file}",
"-o",
"${fileBasenameNoExtension}.exe"
],
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
},
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: gcc.exe 生成活动文件",
"command": "F:\\mingw64\\mingw64-sjlj\\bin\\gcc.exe",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "调试器生成的任务。"
}
]
}
注意,其中的"command"参数和"launch.json"中的"preLaunchTask"参数要一致。
5、编写一个测试程序
写一个简单的Hello World程序比如【test.cpp或test.c】吧,注意不能是test.h。
#include<stdio.h>
int main(void){
printf("Hello World!");
return 0;
}
代码区右键-run code ,然后底部 终端 中就可以看到结果了。
6、可能存在的问题
我遇到的一个问题是,在写完第一行 #include<stdio.h>时,提示缺少include Path。
我的解决方法是:将VS code的“code runner”插件卸载,然后重启VS code,再次安装“ code runner”,搞定。