Pruebe objdump -T 'archivo ELF'
La salida de objdump es un poco excesiva para este propósito y requiere un buen análisis para encontrar las importaciones reales.
Prefiero readelf para este propósito:
readelf -d dynamic-buffer-test
Dynamic section at offset 0x630a8 contains 23 entries:
Tag Type Name/Value
0x0000000000000001 (NEEDED) Shared library: [libstdc++.so.6]
0x0000000000000001 (NEEDED) Shared library: [libm.so.6]
0x0000000000000001 (NEEDED) Shared library: [libc.so.6]
0x0000000000000001 (NEEDED) Shared library: [libgcc_s.so.1]
Como puede ver, las bibliotecas requeridas están marcadas con "NECESARIO".
prefiero readelf
.
readelf -s <file>