Cursor无法使用C/C++调试的解决办法

背景

这几天在二开ffmpeg,发现用cursor无法使用cppdbg进行调试,只能上机gdb,比较麻烦。

配置文件

json 复制代码
// launch.json
{
    // 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": "gdb Launch",
            "type": "cppdbg",
            "request": "launch",
            "program": "${workspaceFolder}/ffmpeg",
            "args": [
                "-i", "/root/test.mp4",
                "-vf", "scale=1280:720",
                "-psnr",
                "-c:v", "libx264",
                "-f", "flv",
                "-y", "/dev/null"
            ],
            "stopAtEntry": false,
            "cwd": "${workspaceFolder}",
            "environment": [],
            "externalConsole": false,
            "MIMode": "gdb",
            "setupCommands": [
                {
                    "description": "Enable pretty-printing for gdb",
                    "text": "-enable-pretty-printing",
                    "ignoreFailures": true
                },
                {
                    "description": "Set Disassembly Flavor to Intel",
                    "text": "-gdb-set disassembly-flavor intel",
                    "ignoreFailures": true
                }
            ]
        }
    ]
}

过程

点了一下debug按钮,闪一下就没了,日志也查不到为什么。一开始以为是什么东西没装,折腾了半天在vscode用同样的launch.json可以正常调试。然后结合最近微软不让第三方使用c/c++插件的事情怀疑就是插件版本的问题。

我cursor上安装的c/c++版本是最新能够被第三方使用的1.23.6,vscode居然还是老版本:1.22.10

解决办法

直接在cursor上回退c/c++的插件到1.22.10就OK了:

相关推荐
bing.shao1 天前
Golang 之 defer 延迟函数
开发语言·后端·golang
无敌最俊朗@1 天前
Qt 多线程编程: moveToThread 模式讲解
java·开发语言
郝学胜-神的一滴1 天前
深入理解OpenGL VBO:原理、封装与性能优化
c++·程序人生·性能优化·图形渲染
!停1 天前
深入理解指针(4)
开发语言·javascript·ecmascript
小白狮ww1 天前
Matlab 教程:基于 RFUAV 系统使用 Matlab 处理无人机信号
开发语言·人工智能·深度学习·机器学习·matlab·无人机·rfuav
埃伊蟹黄面1 天前
模拟算法思想
c++·算法·leetcode
小老鼠不吃猫1 天前
深入浅出(六)序列化库 FlatBuffers、Protobuf、MessagePack
c++·开源·buffer
Unlyrical1 天前
Valgrind快速使用
c++·valgrind
penngo1 天前
Golang使用Fyne开发桌面应用
开发语言·后端·golang
jianfeng_zhu1 天前
不带头节点的循环双链表
c语言