Background:
I am trying to discover where libqbscore.so is loaded from, and when it happens. When I set LD_DEBUG=libs and run the program, /bin/qtcreator, I do not find libqbscore.so amidst the debug.
If however, I set LD_PRELOAD=/path/to/libqbscore.so, then I will start finding its occurences in the output.
Question:
- Why would
LD_DEBUGfail to display a library it is clearly loading? - Is it perhaps simply silent on libraries without debugging symbols?
- How can I fix this so I can determine the origin of
libqbscore.sowhen I run QtCreator?
Thanks.