A binary consisted of lots of obj file and libraries,
Use objdump I can get a list all symbols in this binary.
For example:
000342c4 l F .text 000000cc xdrmem_getlong
00034390 l F .text 000000cc xdrmem_putlong
0003445c l F .text 0000008c xdrmem_getbytes
000344e8 l F .text 0000008c xdrmem_putbytes
00034574 l F .text 00000038 xdrmem_getpos
My question is how to find the object file or pre-built library that contains specified function such as "xdrmem_putbytes" in above example?