Valgrind:禁用条件跳转(或整个库)检查

前端之家收集整理的这篇文章主要介绍了Valgrind:禁用条件跳转(或整个库)检查前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用OpenSSL API开发应用程序.众所周知,OpenSSL使用全局变量的miriades,由Valgrind作为错误(“条件跳转或移动……”等).因此,Valgrind的输出被共享库中的错误堵塞.这对于调试来说非常不方便,因为每次我得到:

More than X total errors detected. I’m not reporting any more.
Final error counts will be inaccurate. Go fix your program!

问题是:

>我可以在Valgrind中禁用派对库(在我的情况下为-lssl和-lcrypto)内存检查吗?
>或者我可以只关注“明确丢失”的错误吗?

谢谢.

最佳答案
Valgrind可以配置为压制库中的错误.

您可以在此处找到详细信息:http://valgrind.org/docs/manual/manual-core.html#manual-core.suppress

从上面链接的网页:

Note: By far the easiest way to add suppressions is to use the –gen-suppressions=yes option described in Core Command-line Options. This generates suppressions automatically. For best results,though,you may want to edit the output of –gen-suppressions=yes by hand,in which case it would be advisable to read through this section.

原文链接:https://www.f2er.com/linux/440169.html

猜你在找的Linux相关文章