10

I would like to examine object files on Windows similar to the Linux tool nm. Is this possible?

user7116
  • 63,008
  • 17
  • 141
  • 172
lknfdhu
  • 479
  • 1
  • 7
  • 12
  • 1
    possible 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 Answers1

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.

enter image description here

Sandro Munda
  • 39,921
  • 24
  • 98
  • 123
  • it MUST be NM not an other tool – lknfdhu Mar 27 '11 at 15:10
  • 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