VSCode配置CPP
程序员文章站
2024-03-14 09:57:04
...
MinGW 与 CMake下载
- 网盘地址
https://pan.baidu.com/s/1UvzMpnxo-L_nSbiCXYLjVw
- 提取码
vs41
配置环境变量
- 配置环境变量后,在VSCode中,可以run code
配置插件
安装C/C++扩展
-
C/C++
-
CMake
-
CMake Tool
编写C++文件
- 编写好,点击
run code
即可运行
进行调试
使用cmake进行调试
- 编写
CMakeLists.txt
文件, 文件名正确, 没有中文
- 生成
build
文件夹
Ctrl
+ shift
+ p
cmake Configure
- 配置
launch.json
文件,
Json文件
1 launch.json
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/main.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
// "miDebuggerPath": "/path/to/gdb",
"setupCommands": [
{
"description": "为 gdb 启用整齐打印",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
- tsaks.json
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "D:\\MinGW\\mingw64\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "D:\\MinGW\\mingw64\\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Generated task by Debugger"
}
],
"version": "2.0.0"
}
总结
- 使用debug功能的时候,CMake创建的文件,不能含有中文路径,否则文件不能找到
推荐阅读
-
VSCode配置CPP
-
vs code 图床插件 picgo 腾讯云cos配置
-
.vscode\c_cpp_properties.json”: Unexpected token / in JSON at position
-
Arduino在vscode中输出乱码解决方法——亲测有效
-
vscode (c/cpp)解决终端 无法输出中文/中文乱码的问题 2020最新最全。
-
wsl使用vscode调试cpp
-
Ubuntu16.04下安装配置rsync
-
在win10下为jupyter同时配置python2.7.15和python3.6.7
-
intellij-idea开启rundashboard配置,配置过workspace.xml重启依旧无效
-
hadoop集群配置时hosts配置导致的错误(datanode节点只显示一个)