我有一个问题,valgrind;我不知道为什么当我用 valgrind 检查我用 C 开发的程序时,它无法在发现问题的地方显示函数名称(它显示“???”),但这个问题并不适用于它检测到的所有错误
==9803== ERROR SUMMARY: 24 errors from 6 contexts (suppressed: 0 from 0)
==9803==
==9803== 1 errors in context 1 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F7EC6: ???
==9803==
==9803== 1 errors in context 2 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F86F8: ???
==9803==
==9803== 1 errors in context 3 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F8166: ???
==9803==
==9803== 1 errors in context 4 of 6:
==9803== Conditional jump or move depends on uninitialised value(s)
==9803== at 0x40F805E: ???
==9803==
您有使用 valgrind 显示函数名称的解决方案吗?
提前致谢