VisualStudioCode配置CC++环境(TDM-GCC)遇到的坑安装扩展(extension)
C/C++:⼜名 cpptools,提供Debug和Format功能
Code Runner:右键即可编译运⾏单⽂件,但⽆法Dubug
第⼀个坑, 不到⽂件
下载TDM-GCC5.1后默认的安装选项竟然不选gdb,这是什么⿁,安装说明⽂档中有这么⼀段话:
You'll need GDB particularly if you want to use an IDE with debugging support.
好吧,重新安装,选中这个选项
另外安装程序有将gcc加⼊到环境变量PATH的选项,这点倒不⽤我们操⼼了。
第⼆个坑,配置各种json⽂件
由于我更改默认安装路径到D:\TDM-GCC-64,需要更改⼏个配置⽂件,先新建⼀个⽂件夹,⽐如F:\VS-Code-C,打开VScode,在其中打开这个⽂件夹,新建⼀个.vscode⽂件夹,在其中新建launch.json⽂件,拷贝内容如下:
{
"version": "0.2.0",
"configurations": [
{
"name": "C++ Launch (GDB)",
"type": "cppdbg",
"request": "launch",
"targetArchitecture": "x86",
// 要进⾏调试的可执⾏⽂件的路径
"program": "${workspaceRoot}/main",
visual studio和vs code的区别// gdb调试器路径,这⾥选择TDM-GCC安装⽬录下的gdb
"miDebuggerPath":"D:/TDM-GCC-64/",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"externalConsole": true,
// 调试会话前执⾏的任务,这⾥是task.json中配置好的编译任务
"preLaunchTask": "g++",
// pretty-printing配置,可以直观打印出C++中的容器
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
}
]
}
重点修改"miDebuggerPath"项,⽬录层级⽤/隔开。
新建并配置tasks.json
{
"version": "2.0.0",
"command": "g++",
"args": ["-g","${file}","-o","${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
}
}
}
第三个坑, c_cpp_properties.json的配置,
⾸先是"includePath"和"compilerPath" ,这个照例改为⾃⼰GCC的安装路径
另外还要注意的两点,配置不好会显⽰两个问题:
第⼀:IntelliSense模式msvc-x64与编译器路径不兼容
这是因为msvc-x64对应的编译器是Windows中的Visual Studio,咱们编译器没有选择Visual Studio,所以IntelliSense 模式不兼容,此处,选择和g++ on Mingw-w64兼容的IntelliSense 模式模式就可以了,此处选择:gcc-x64,
————————————————
{
"configurations": [
{
"name": "Win32",
"includePath": [
"D:/TDM-GCC-64/include",
"D:/TDM-GCC-64/x86_64-w64-mingw32/include",
"D:/TDM-GCC-64/lib/gcc/x86_64-w64-mingw32/5.1.0/include",
"D:/TDM-GCC-64/lib/gcc/x86_64-w64-mingw32/5.1.0/include/c++"
],
"browse": {
"limitSymbolsToIncludedHeaders": true,
"databaseFilename": ""
},
"intelliSenseMode": "gcc-x64", //默认为msvc-x64
"compilerPath": "D:\\TDM-GCC-64\\bin\\",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
//"clang_format": 在这⾥设置, 现在先删除
"version": 4
}
第⼆:property clang_format is not allowed
⽬前还⽤不上,删掉下⾯的设置即可
"clang_format": {
"style": "file",
"fallback-style": "LLVM",
"sort-includes": false
},
下⾯新建⼀个main.cpp,在代码界⾯点击右键,选择Run Code (前⾯安装的扩展), 即可在终端中显⽰结果。否则,必须在第七⾏下断点,不然运⾏结果会⼀闪⽽过。
#include <iostream>
using namespace std;
int main()
{
cout << "Hello Vscode" << endl;
return 0;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论