How do I change all shared libraries used in my programe to static libraries in windows?

Posted by httpinterpret on Stack Overflow See other posts from Stack Overflow or by httpinterpret
Published on 2010-05-09T06:02:53Z Indexed on 2010/05/09 6:08 UTC
Read the original article Hit count: 174

Filed under:
|
|

The shared library is causing much trouble for me, and disk space is far less expensive than the trouble itself.

How can I convert all shared libs(.dll) to static libs(.lib) and make my programe use them instead of using shared libs?

Note some .dlls are not directly refered to by my programe,e.g. my programe requires libpng,and libpng requires zlib.dll.

Is there a solution that wraps up all these cases?

© Stack Overflow or respective owner

Related posts about c

    Related posts about dll