Ubuntu – Determining if a memory leak is a false positive
I have a simple program written in C++ that build in the following configurations: Using/linked with libstdc++ Using/linked with libc++ I run both builds using valgrind like so: valgrind --leak-check=full --show-reachable=yes --track-origins=yes --log-file=test_program.log -v ./test_program The libstdc++ version runs and…