|
From: John R. <jr...@bi...> - 2013-06-05 17:57:23
|
> is it certain, based on what you've seen, that I actually am using the debug > package? I installed it, which apparently is all that is required to cause > it to get used when compiled for debugging? There is a chance of pathname mixup: installing into the "wrong" directory. The way to tell is to run valgrind under strace: $ strace -f -o strace.out -e trace=file ~/local/bin/valgrind --leak-check=yes ./clock_gettime CLOCK_MONOTONIC and afterwards look in strace.out for any open() on the debug symbol file(s). -- |