例如,与:
#include <functional>
#include <iostream>
int myfunc(int i){ return i + 1; }
int main() {
std::function<int(int)> f = myfunc;
int i = f(1);
std::cout << i << std::endl;
}
Run Code Online (Sandbox Code Playgroud)
编译:
g++ -ggdb3 -O0 -std=c++11 -Wall -Wextra -pedantic -o main.out main.cpp
Run Code Online (Sandbox Code Playgroud)
如果我尝试step进入调用f(1),那么它首先会引导我进入 C++ 标准库代码,我要么必须非常认真地思考并执行正确的next/step顺序,要么step在达到实际之前愚蠢并击中17 次myfunc电话。
有没有更简单的方法来解决这个问题,也许使用一些现有的 GDB/Python 脚本?
这基本上是由 Microsoft 人员为 Visual Studio 完成的,如下所述: https //devblogs.microsoft.com/cppblog/improving-the-debugging-experience-for-stdfunction/
我喜欢它可以在 Ubuntu 中默认进入 stdlibc++ 并且之前已经使用过它,但是如果 GDB 可以std::function默认进入用户代码,并且有一些其他机制可以进入 libstdc++ 这个特定的,那就太棒了案件。
我很想变得有点厚颜无耻,只需使用以下重复命令 n 次的 Python GDB 脚本:gdb - 执行命令 n 次,这允许我执行以下操作:
repeat-cmd 17 s
Run Code Online (Sandbox Code Playgroud)
有关的: QtCreator 调试器:进入 std::function
在 Ubuntu 18.04、GDB 8.1、GCC 7.4 中测试。
只需在 source.cpp: 5 行上加上break即可
(gdb) b source.cpp:5
Run Code Online (Sandbox Code Playgroud)
然后按 r(运行)
步骤到 f(1) 集之前的矿石
s 25
Run Code Online (Sandbox Code Playgroud)
这将导致进入该函数
#include <functional>
#include <iostream>
int myfunc(int i) {
return i + 1;
}
int main() {
std::function<int(int)> f = myfunc;
int i = f(1);
std::cout << i << std::endl;
}
Run Code Online (Sandbox Code Playgroud)