UNIX: Debugging the contents of a Shared Object file

If you just wanted to see basic header info (not even that preceise), then you could use the following unix command to look into a shared object ((filename).so) file.

nm (directory)\(filename).so

If this is still not working. Try appending -C -D at the end like so:

nm (directory)\(filename).so -C -D

I found this info on some google forum:
http://www.mail-archive.com/.../msg00935.html

The guy also mentioned using the following configurations:
arm-none-linux-gnueabi-nm
arm-none-linux-gnueabi-objdump

No comments: