Top "Nm" questions

nm is a POSIX tool that displays symbol names and other such information of an object file to stdout

What is your favorite disassembler tool in Mac OS X?

I am using the otool, nm and Fraise text editor to disassemble the Mach-o binaries. My workflow at this point …

macos assembly disassembly nm otool
Microsoft equivalent of the nm command

I've long used cygwin's nm command for all my .lib symbol debugging needs, but recently I thought about referring to …

symbols nm
How to read nm output?

Thats my code: int const const_global_init = 2; int const const_global; int global_init = 4; int global; static int static_…

c linux nm
nm vs "readelf -s"

Suppose we have a shared library named libtest.so, there is one function "foo" in it use the strip to …

linux nm readelf
Tool for Library Dependency

I'm looking for the tool/command on Unix platform to detect the library dependencies of the .so and .o files. …

unix shared-libraries solaris ldd nm
How to find function from lib .so files?

I can print list of exported function of one *.so file like nm -C lib/libopencv_ml.so and then …

linux grep shared-libraries nm
Difference between nm and objdump

Looking at the manuals, objdump and nm have overlapping features. When would you use each one? What was the original …

binutils objdump nm
How to display the symbol's type like the nm command?

I'm studying the ELF format right now. I have to code a simple nm fonction (without the options). I'm already …

c unix command elf nm