Assuming that you have the name of a symbol ( demangled or not ) and the name of a library dynamically linked to others, you want to find out which library is able to resolve that symbol.
I tried to use nm
, objdump
and readelf
and I can't find good documentation about it, looks like it's not possible with this tools.
gdb
offers something similar but it's a debugger, I need something for a quick lookup, Do you know how to do this without firing up a debug session?