|
From: Philippe W. <phi...@sk...> - 2015-06-04 17:53:05
|
On Thu, 2015-06-04 at 16:08 +0530, Suryansh Kumar wrote: > Is it even possible to use valgrind on the plugin? I've searched up on > this a lot but haven't found any concrete answer on it. Yes, valgrind works with dynamically loaded .so I guess that the plugin is not loaded by gcc itself, but rather by a child process of gcc. Then, you have to use --trace-children=yes to trace the children of gcc. Philippe |