In AIX, how to list all shared library from a core file, including explicitly attached using dlopen()? Command ldd only lists statically loaded shared library. Command procldd can list the explicitly attached library using dlopen(), but the input parameter is a running process ID instead of core file.
How to list all shared library from a core file in AIX
736 views Asked by Jacky Chen At
2
I believe with dbx there is the "map" command that will list the shared libraries. I do not know about ones loaded with dlopen but I would think those would be included.