Static library inspector for windows?

后端 未结 2 782
伪装坚强ぢ
伪装坚强ぢ 2021-02-04 01:55

I know there are tools like PE Explorer for inspecting the contents of DLLs on windows (exported symbols, etc). Is there something similar for static libraries? I\'m linking a

相关标签:
2条回答
  • 2021-02-04 02:12

    Dumpbin

    The DUMPBIN utility, which is provided with the 32-bit version of Microsoft Visual C++, combines the abilities of the LINK, LIB, and EXEHDR utilities. The combination of these tools features the ability to provide information about the format and symbols provided in executable, library, and DLL files.

    0 讨论(0)
  • 2021-02-04 02:22

    dumpbin comes with Visual Studio and can peek into .lib files. read the documentation to figure out which swich you want to use or just use /all, dump it all to a file and use an editor to search the symbols you're looking for.

    0 讨论(0)
提交回复
热议问题