What libs in exe
How do you figure out what libs were used to build an exe? 1. Using only 开发者_C百科exe 2. Having full dev env.
- objdump, memory map (when exe's working) and Dependency Walker
- Looking at references and includes should help.
For completenesses sake, on Linux you'd use ldd to see what dynamic library's was linked again... and 'objdump --syms' to get a listing of symbols...
精彩评论