> On 17 Jun 2026, at 14:50, Mark Roberts <[email protected]> wrote: > > Yes I see that. Is there anything special one needs to do to get it to > process the shared library in addition to the main program?
Everything will run under Valgrind. Valgrind executes the dynamic loader, ld.so, which loads the required shared libraries. Then the main program (with loaded shared libraries) will then run under Valgrind. You will be able to tell if an instruction address is from the main program or a library. Regards Paul _______________________________________________ Valgrind-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-users
