I would like to examine object files on Windows similar to the Linux tool nm. Is this possible?
Asked
Active
Viewed 7,319 times
10
-
1possible duplicate of [Microsoft equivalent of the nm command](http://stackoverflow.com/questions/375273/microsoft-equivalent-of-the-nm-command) – Harry Johnston Aug 04 '12 at 00:14
-
Possible duplicate of [Microsoft equivalent of the nm command](https://stackoverflow.com/questions/375273/microsoft-equivalent-of-the-nm-command) – Csq Jan 11 '18 at 22:18
1 Answers
12
You should try 'DUMPBIN'. You can see here the description of this tool and here the reference.
In addition, a GUI is available here.

Sandro Munda
- 39,921
- 24
- 98
- 123
-
-
1@SandroMunda it might not be what the OP was hoping for but it's definitely a good solution when you need to examine the method signature coming out of a c++ binary object - thanks – Jamie Cook May 15 '13 at 22:09