Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Creating shared libraries In C

Share this post!
 Vote this!

Having shared libraries allows you to create programs that can break down functions into several different binary files. If there were no shared libraries all the programs would be a single, massive binary file. Updating programs would be pain because the entire project would have to be recompiled.
Also, shared libraries allow programmers to reuse existing binary files so that standard functions don't have to be recompiled again and again. Imagine having to wait for the stdio or stdlib to compile every single time you had a simple program.

Alright, now for the meat of the tutorial.  more...

0 comments:

Post a Comment