Reputation: 1
I am running a process using valgrind that uses multiple shared objects. The valgrind command is:
valgrind --track-origins=yes --tool=memcheck --leak-check=full --show-reachable=yes --log-file=/tmp/PROGNAME.out -v PROGNAME ARG1 ARG2 ARG3 ARG4 ARG5 ARG6 ARG7
My LD_LIBRARY_PATH is pointing to the correct library path as well.
But my valgrind
report generated doesn't show the section of LEAK SUMMARY
or HEAP SUMMARY
.
Any suggestions as to what's being done incorrectly here would be of great help!
Upvotes: 0
Views: 130