VSCode C++ 调试方法

VSCode 调试 C++ 主要就是 .vscode 中的 launch.json 和 tasks.json 的配置。

launch.json 可以通过 vscode 界面 ------》左侧调试功能按钮------》创建 launch.json ------》C++(GDB/LLDB)生成。

其中 launch.json 默认配置如下,主要配置项说明:

  • name:启动项的名字

  • program:指向最终生成的可执行文件的路径

  • args:执行时的输入参数

  • stopAtEntry:自动在 main 函数时停止

    {
    "version": "0.2.0",
    "configurations": [
    {
    "name": "C/C++: g++ build and debug active file",
    "type": "cppdbg",
    "request": "launch",
    "program": "{fileDirname}/{fileBasenameNoExtension}",
    "args": [],
    "stopAtEntry": false,
    "cwd": "${workspaceFolder}",
    "environment": [],
    "externalConsole": false,
    "MIMode": "gdb",
    "miDebuggerPath": "/usr/bin/gdb",
    "setupCommands": [
    {
    "description": "Enable pretty-printing for gdb",
    "text": "-enable-pretty-printing",
    "ignoreFailures": true
    }
    ],
    "preLaunchTask": "C/C++: g++ build active file"
    }
    ]
    }

tasks.json 文件可以通过 vscode 菜单 ------》终端------》配置任务 生成。

其中 tasks.json 默认配置如下,主要配置项说明:

  • command:给出具体编译命令,可以是 /usr/bin/g++,也可以是基于 CMakeLists.txt 直接输入 cmake 命令

  • args:编译命令输入参数

  • group.isDefault:是否为默认编译方式,True 表示默认使用此编译选项

    {
    "version": "2.0.0",
    "tasks": [
    {
    "type": "shell",
    "label": "C/C++: g++ build active file",
    "command": "/usr/bin/g++",
    "args": ["-g", "{file}", "-o", "{fileDirname}/{fileBasenameNoExtension}"], "options": { "cwd": "/usr/bin" }, "problemMatcher": ["gcc"],
    "group": {
    "kind": "build",
    "isDefault": true
    },
    "detail": "Task generated by Debugger."
    }
    ]
    }

CMakeLists.txt 方式

如果使用 CMakeLists.txt,需要在 CMakeLists.txt 中添加如下行,从而以 Debug 方式(一共有以下方式:Debug Release RelWithDebInfo 和 MinSizeRel)编译。

SET(CMAKE_BUILD_TYPE "Debug") 
SET(CMAKE_CXX_FLAGS_DEBUG "$ENV{CXXFLAGS} -O0 -Wall -g -ggdb")
SET(CMAKE_CXX_FLAGS_RELEASE "$ENV{CXXFLAGS} -O3 -Wall")

tasks.json 配置中对应 command 修改如下

{
	"version": "2.0.0",
	"tasks": [
        {
            ...
            "command": "cmake . -B build -DCMAKE_BUILD_TYPE=Debug;cmake --build build --target main --config Debug -j",
            "args": [],
            ...
    ]
}
相关推荐
初学者丶一起加油34 分钟前
C语言基础:指针(数组指针与指针数组)
linux·c语言·开发语言·数据结构·c++·算法·visual studio
장숙혜1 小时前
Visual Studio光标变为方块状换回方法
ide·visual studio
CodeClimb1 小时前
【华为OD-E卷-租车骑绿道 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
Hylan_J1 小时前
【VSCode】工作区及设置
ide·vscode·编辑器
易码智能2 小时前
【RealTimeCallBack】- KRTS C++示例精讲(4)
c++·定时器·kithara·windows 实时套件·krts
小王爱吃月亮糖2 小时前
QT-QVariant类应用
开发语言·c++·笔记·qt·visual studio
计科土狗2 小时前
基于c语言的union、字符串、格式化输入输出
c++
闻缺陷则喜何志丹2 小时前
【C++动态规划】1458. 两个子序列的最大点积|1823
c++·算法·动态规划·力扣·最大·子序列·点积
半盏茶香2 小时前
C语言勘破之路-最终篇 —— 预处理(上)
c语言·开发语言·数据结构·c++·算法
没事就去码2 小时前
RBTree(红黑树)
数据结构·c++