PDA

View Full Version : figure out?



uygar
19th May 2009, 20:18
:confused:How could I figure out which *.dll and *.a files do I really need.
The size of release project.exe file is nearly 13MB and for execute it I collect nearly 450MB dll files.

I need to eliminate some of them.:crying:

Lykurg
19th May 2009, 20:46
May Dependency Walker (http://www.dependencywalker.com/) can help you.

auba
20th May 2009, 07:52
Yes, depency walker is great for that. Does someone know how to do it for the other two platforms?
Linux = nm -Cu or something like that? But then I only get the undefined symbols...
Mac probably the same as Linux?


for execute it I collect nearly 450MB dll files.

This is more than the DotNet collection :D What the hell are you doing? :)

wysota
20th May 2009, 08:19
For Unix running ldd on the application is enough. It lists all dependent libraries.