Can I have the gcc linker create a static libary?

Posted by Lucas Meijer on Stack Overflow See other posts from Stack Overflow or by Lucas Meijer
Published on 2010-12-24T23:04:50Z Indexed on 2010/12/24 23:54 UTC
Read the original article Hit count: 198

Filed under:
|
|

I have a library consisting of some 300 c++ files.

The program that consumes the library does not want to dynamically link to it. (For various reasons, but the best one is that some of the supported platforms do not support dynamic linking)

Then I use g++ and ar to create a static library (.a), this file contains all symbols of all those files, including ones that the library doesn't want to export.

I suspect linking the consuming program with this library takes an unnecessary long time, as all the .o files inside the .a still need to have their references resolved, and the linker has more symbols to process.

When creating a dynamic library (.dylib / .so) you can actually use a linker, which can resolve all intra-lib symbols, and export only those that the library wants to export. The result however can only be "linked" into the consuming program at runtime.

I would like to somehow get the benefits of dynamic linking, but use a static library.

If my google searches are correct in thinking this is indeed not possible, I would love to understand why this is not possible, as it seems like something that many c and c++ programs could benefit from.

© Stack Overflow or respective owner

Related posts about c++

Related posts about gcc