Hi,
I have a C++ program which analyze a bunch of files. The summary shows leak summary, in which all leaks happened in a single place. But I was unable to identify which file caused the leak.
Is there a way to show leak detail? e.g., show variable information in stack trace of leak summary? Also, it is possible to let AddressSanitizer pause the program when a memory leak is found(if the program is launched by gdb)?
Thank you.