Dynamic Linking - CI/CD用語集の定義
動的リンクは、外部ライブラリへの結合をロード時または実行時まで遅延させ、1 つのライブラリのコピーを複数のプログラム間で共有します。バイナリは小さいままですが、期待される shared library やその ABI が欠けていると壊れます。
関連ガイド
Static Linking - CI/CD Glossary DefinitionStatic linking bakes all library code into the binary at build time, producing a larger but self-contained ex…
Shared Library - CI/CD Glossary DefinitionA shared library (.so, .dll, .dylib) is reusable compiled code loaded by many programs at run time, so a fix…
ABI Compatibility - CI/CD Glossary DefinitionABI compatibility means compiled binaries agree on calling conventions and layouts, so a library can be swapp…