vote up 2 vote down star

I usually use this:

valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes ./mycode

But not sure if on one hand it checks everything, on the other hand too verbose. What's your favorite option?

flag

I prefer leak-check=full but the rest is pretty standard for what I use. – Nick Presta Mar 15 at 22:33

2 Answers

vote up 3 vote down check

--tool=callgrind

And when applicable, --instr-atstart=no

link|flag
vote up 3 vote down

SVN valgrind has --track-origins=yes, which actually makes uninitialized value warnings useful.

link|flag
--track-origins is in Release 3.4.0, released 2 January 2009. If you have an old version, compile from source and/or bug your distro! – jwhitlock Aug 4 at 22:16

Your Answer

Get an OpenID
or

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