Any tips for tracking stuff down? Techniques? Any tools useful to check callers of function x(some parts of the call stack appear as ??? or are skipped).

Does --track-origins=yes make things much slower(the program I'm using it on seems to time out when I try to do that).

link|improve this question

60% accept rate
feedback

1 Answer

Compiling with optimizations (e.g. -O3) can cause some functions to be optimized out, and could result in the ???'s you're seeing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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