I\'ve long used cygwin\'s nm command for all my .lib symbol debugging needs, but recently I thought about referring to it in a SO answer and realized that most Windows devel
Try dumpbin.exe.
MSDN dumpbin.exe reference.
Run vcvarsall.bat
which might present in your installed path of Microsoft Visual Studio. This sets environmental variable required for dumpbin.exe
.
D:>"D:\Program Files (x86)\Microsoft Visual Studio 10.0\vcvarsall.bat" x86
Then use dumpbin.exe
. For example dumpbin.exe /ALL <bin_file>
gives all symbols.