Tools for inspecting .lib files?

前端 未结 5 1412
梦毁少年i
梦毁少年i 2020-11-30 21:50

I\'m evaluating some underdocumented software. When I build a sample project, I\'m getting a linker error that looks like:

error LNK2019: unresolved external symbo         


        
5条回答
  •  攒了一身酷
    2020-11-30 22:21

    this worked with a visual C++ express 9 .lib :

    dumpbin.exe -headers clangParse.lib | findstr /c:"COMDAT" > clangParse-exports.txt

    or dumpbin.exe -headers clangParse.lib | findstr /c:"sym=" > clangParse-exports.txt

    thank you d.shawley

提交回复
热议问题