On Tue, 2015-07-14 at 08:13 -0400, Raul Miller wrote: > I also wind up spending a fair amount of time in ld.so
You can avoid stepping through ld.so by starting your gdb session with LD_BIND_NOW=1 in your environment. This will do all the symbol resolution upfront so you won't need to step through ld.so lazy binding. -Kurt
