c++ - Static library inspector for windows? -
I know that there are tools like PE Explorer to export the contents of DLL on windows (exported symbols, etc.). Is there something similar to stable libraries? I am linking against a third party library which generates some linking errors, and I would like to repeat the check that the symbols I expect to be provided are actually being provided.
DUMPBIN utility, which is used for Microsoft Visual C ++ Provided with a 32-bit version, LINK, LIB, and EXEHDR combines the utility's capabilities. These tools have the ability to provide information about formats and symbols provided in executables, libraries, and DLL files.
Comments
Post a Comment