When developing for native platform, I can use ldd to list all the shared libraries (.so files) a binary executable I build will try to load upon start-up. But when cross-co
while in gdb, info shared is similar to ldd. It gives complete human readable runtime information of the executable. readelf would miss path and other libraries information. readelf is a very good tool for on the host study. Developer may choose that works.