Is there any way to read the content of a .SO(shared objects) file without loading it?
My use-case scenario is:
Note: I can easily do these things on DLL. Also I am working on windows so I can't load a .SO file.
Thanks
To screen: readelf -a <file>
To save the output, dump it into a file. For example, I'm learning about the Python RPi.GPIO module on Raspberry Pi, which is stored in /usr/lib/python2.7/dist-packages/RPi, so I run:
readelf -a GPIO.so > ~/gpio.so.out