使用 gdb 和犰狳进行调试

Debugging with gdb and armadillo

使用 armadillo C++ 库时,我需要使用 g++ 标志 -larmadillo 编译为 link 运行-time armadillo 库。否则,我会收到许多未定义的引用错误。

然而,当我想使用 gdb 进行调试时,我仍然得到这些未定义的引用。如何让 gdb 无误地使用 linked 库?或者,我如何以 gdb(或任何其他调试器)可以工作的方式进行编译?

我正在使用 VS 代码。我的:tasks.json, launch.json

对我来说,当我在 tasks.json 文件中将类型更改为 "type": "shell", 时它起作用了。这是我在 Armadillo 文档中用于基本示例的设置。

tasks.json

{
    "version": "2.0.0",
    "tasks": [
        {
            "type": "shell",
            "label": "C/C++: g++ build active file",
            "command": "/usr/bin/g++",
            "args": [
                "-ggdb",
                "${file}",
                "-o",
                "${fileDirname}/${fileBasenameNoExtension}",
                "-std=c++11",
                "-O2",
                "-larmadillo"
            ],
            "options": {
                "cwd": "${workspaceFolder}"
            },
            "problemMatcher": [
                "$gcc"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "detail": "compiler: /usr/bin/g++"
        }
    ]
}

launch.json

{
    "configurations": [
      {
        "name": "(gdb) Launch",
        "type": "cppdbg",
        "request": "launch",
        "program": "${fileDirname}/${fileBasenameNoExtension}",
        "args": [],
        "stopAtEntry": false,
        "cwd": "${workspaceFolder}",
        "environment": [],
        "externalConsole": false,
        "MIMode": "gdb",
        "setupCommands": [
            {
                "description": "Enable pretty-printing for gdb",
                "text": "-enable-pretty-printing",
                "ignoreFailures": true
            }
        ],
        "preLaunchTask": "${defaultBuildTask}",
      }
    ]
  }