Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm quite new in using valgrind. I'm running tests for my C library. I've tryed to run it under valgrind and got some very valuable info about possible errors in my code. One thing that bothers me is beginning of every valgrind session is full of messages like this:

DWARF2 CFI reader: unhandled CFI instruction 0:22

IIUC it's unrelated to problems in my code and I'd like to disable them to simplify analysis of other errors. I've read valgrind help but can't find the proper command-line option.

Can you provide me some hints?

share|improve this question

1 Answer

up vote 3 down vote accepted

Support for these DWARF3 operations have been added. Just update to the current version of valgrind, available at http://valgrind.org.

share|improve this answer
OK, I'll try to update. Thanks. – bialix Oct 6 '09 at 7:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.