
- Posted OnJuly 25, 2015
- BYJegan
Developing a Linux Static Library in C/C+
What is a static library? In Linux, static libraries are nothing more than an object file(.o) which has function definitions. In Linux world, use of static libraries aren’t that common as compared to dynamic library or shared objects(.so). However...