blob: 9c77720340b3e5ce5656c6e5aa0fc25e6e891cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# identify dependencies
objdump -x some_elf_file | grep NEEDED
# identify SONAME used by dynamic loader
objdump -x some_lib | grep SONAME
# identify runtime library search paths
objdump -x some_elf_file | grep PATH
# identify path of dynamic loader (search for "interp")
objdump -s some_elf_file | less
|