Do I need static libraries to statically link?

后端 未结 4 1433
旧时难觅i
旧时难觅i 2020-12-16 02:19

On \'C\', Linux,

Do I need static libraries to statically link, or the shared ones I have suffice? If not, why not? (Don\'t they contain the same data?)

4条回答
  •  清歌不尽
    2020-12-16 03:20

    Yes, you need static libraries to build a statically linked executable.

    Static libraries are bundles of compiled objects. When you statically link with to library, it is effectively the same as taking the compilation results of that library, unpacking them in your current project, and using them as if they were your own objects.

    Dynamic libraries are already linked. This means that some information like relocations have already been fixed up and thrown out.

    Additionally, dynamic libraries must be compiled as position-independent code. This is not a restriction on static libraries, and results in a significant difference in performance on some common platforms (like x86).

    There exist tools like ELF Statifier which attempt to bundle dynamically-linked libraries into a dynamically-linked executable, but it is very difficult to generate a correctly-working result in all circumstances.

提交回复
热议问题