关于vs code Debug调试时候出现“找不到任务C/C++: g++.exe build active file” 解决方法

vs code Debug调试时候出现"找不到任务C/C++: g++.exe build active file" ,出现报错,Debug失败


后来经过摸索和上网查找资料解决问题

方法如下

在Vs code的操作页面左侧有几个配置文件

红框里的是需要将要修改的文件

查看tasks.json和launch.json框选" "的字符串是否一致

完成后,按F5启动调试,报错弹窗消失,顺利完成调试

下面是 我的 Vs code中tasks.json和launch.json源文件

cpp 复制代码
{
    "tasks": [
        {
            "type": "shell",
            "label": "g++ build active file",
            "command": "/usr/bin/g++",
            "args": [
                "-g",
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}"
            ],
            "options": {
                "cwd": "/usr/bin"
            }
        },
        {
            "type": "cppbuild",
            "label": "C/C++: g++ 生成活动文件",
            "command": "/usr/bin/g++",
            "args": [
                "-fdiagnostics-color=always",
                "-g",
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}"
            ],
            "options": {
                "cwd": "${fileDirname}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": "build",
            "detail": "编译器: /usr/bin/g++"
        }
    ],
    "version": "2.0.0"
}
cpp 复制代码
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "g++ - 生成和调试活动文件",
            "type": "cppdbg",
            "request": "launch",
            "program": "${fileDirname}/${fileBasenameNoExtension}",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "为 gdb 启用整齐打印",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                }
            ],
            "preLaunchTask": "g++ build active file",
            "miDebuggerPath": "/usr/bin/gdb"
        }
    ]
}
相关推荐
凌云行者3 分钟前
Linux-Robust-Futex学习笔记
linux·学习笔记·robust futex
迂幵myself36 分钟前
14-6-2C++STL的list
开发语言·c++·list
漫漫进阶路37 分钟前
C++ 堆栈分配的区别
c++
飞yu流星38 分钟前
c++ map/multimap容器 学习笔记
c++·笔记·学习
crossoverpptx38 分钟前
C++的类Class
开发语言·c++
SY师弟1 小时前
团体程序设计天梯赛-练习集——L1-025 正整数A+B
c语言·数据结构·c++·算法·c#·图论·gplt
阿猿收手吧!2 小时前
【Docker】Docker入门了解
linux·运维·服务器·docker·云原生·容器·eureka
kukubuzai3 小时前
文件(c语言文件流)
c语言·开发语言
bohu8310 小时前
亚博microros小车-原生ubuntu支持系列:12 URDF 模型
ubuntu·rviz·urdf·机器人模型·microros·亚博
zwhSunday10 小时前
线程概念、操作
linux·线程