Difference between shared objects (.so), static libraries (.a), and DLL’s (.so)?
A static library(.a) is a library that can be linked directly into the final executable produced by the linker,it is contained in it and there is no need to have the library into the system where the executable will be deployed. A shared library(.so) is a library that is linked but not embedded in the … Read more