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
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