LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Is there any command that can check the referenced functions in a executable? (https://www.linuxquestions.org/questions/linux-general-1/is-there-any-command-that-can-check-the-referenced-functions-in-a-executable-839442/)

rainman1985_2010 10-20-2010 10:09 PM

Is there any command that can check the referenced functions in a executable?
 
Is there any command that can check the referenced functions in a executable?

neonsignal 10-21-2010 01:18 AM

You can use ldd to display the shared libraries that the executable requires.

You can use ltrace to run the executable and log the library calls.

You can use nm to show the symbols in the executable (but only if they haven't been stripped). And objdump for more of this.


All times are GMT -5. The time now is 05:36 PM.