vscode 1.42.1OS: windows 7 x641. vscode, cpp extension本文直接跳过 vscode 安装, Cpp tools 安装2. MinGw 安装及配置下载MinGW - Minimalist GNU for Windows安装过程安装所需依赖环境3. 配置环境变量4. 调...
vscode 1.42.1
OS: windows 7 x64
1. vscode, cpp extension
本文直接跳过 vscode 安装, Cpp tools 安装
2. MinGw 安装及配置
下载MinGW - Minimalist GNU for Windows
安装过程
安装所需依赖环境
3. 配置环境变量
4. 调试
配置 launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "g++.exe build and debug active file",
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true, // 这里要改为true
"MIMode": "gdb",
"miDebuggerPath": "D:\\MinGW\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "g++"
}
]
}
配置task.json
{
"version": "2.0.0",
"tasks": [
{
"label": "g++",
"type": "shell",
"command": "D:\\MinGW\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "D:\\MinGW\\bin"
},
"problemMatcher": [
"$gcc"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true, //这里shared表示共享,改成new之后每个进程创建新的端口
"clear": false
}
}
]
}
最后结果
参考
- 整理:Visual Studio Code (vscode) 配置C、C++环境/编写运行C、C++(主要Windows、简要Linux)
- vscode 基本知识以及如何配置 C++ 环境
- 关于VScode报错“终端将被任务重用,按任意键关闭”的解决方案
- VSCode 代码调试器
- windows 10上使用vscode编译运行和调试C/C++
Certainty of death. Small chance of success.
沃梦达教程
本文标题为:vscode C++ 程序 windows
基础教程推荐
猜你喜欢
- C++中的atoi 函数简介 2023-01-05
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- C/C++编程中const的使用详解 2023-03-26
- C语言 structural body结构体详解用法 2022-12-06
- 如何C++使用模板特化功能 2023-03-05
- C++详细实现完整图书管理功能 2023-04-04
- C语言基础全局变量与局部变量教程详解 2022-12-31
- 详解c# Emit技术 2023-03-25
- 一文带你了解C++中的字符替换方法 2023-07-20
- C利用语言实现数据结构之队列 2022-11-22