Hi,
I use Codeblocks create a project to do some device operations in my code,
and find that if I use "-static" as linker option, memory leak of the executable file create by Codeblocks won't be detected by valgrind.
Like the memory I malloc that not released by calling free.
But if I close "-static" linker option, all memory leak will be detected again.
I use cmd: "valgrind --tool=memcheck --leak-check=full ./MyProgram".
Can anyone kindly tell me why?
BR
|