Cannot find Dumpbin.exe

后端 未结 9 628
时光取名叫无心
时光取名叫无心 2020-12-08 01:50

I do not see dumpbin.exe on my system. I have Visual Studio 2005 on my system. When I type dumpbin on the command line, it says unrecognizable command.

Does it come

9条回答
  •  萌比男神i
    2020-12-08 01:56

    Instead of using the dumpin.exe it is possible to call the link.exe with several options:

    Example: link /dump /all myfile.lib

    For detailed options see output of link /dump

    In case of Visual Studio C++ Express installation, the link.exe is located here:

    {root}\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\
    

    The best way is to open the "Visual Studio Command Prompt" and then enter the lines above.

提交回复
热议问题