开发者

What libs in exe

开发者 https://www.devze.com 2023-02-17 22:31 出处:网络
How do you figure out what libs were used to build an exe? 1. Using only 开发者_C百科exe 2. Having full dev env.

How do you figure out what libs were used to build an exe? 1. Using only 开发者_C百科exe 2. Having full dev env.


  1. objdump, memory map (when exe's working) and Dependency Walker
  2. 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...

0

精彩评论

暂无评论...
验证码 换一张
取 消