Switching from Static to Dynamic Linking
/* Posted March 21st, 2008 at 8:59am [Comments: none] *//* Filed under C/C++, Linux, Microsoft, Programming */
Recently I had to modify a library to use dynamic linking in order to cut down on its size. Originally a 8MB file, I was looking at reducing the size to 1.3MB. Pretty great right? So why not dynamically link every time? Well, there are certain times when static linking, though it increases the size of your library, might be preferable.












