dynamic リンク - CI/CD用語集の定義
dynamic リンクは、ライブラリ参照を build 時ではなくロード時または実行時に解決するため、実行可能ファイルはターゲットシステム上に共有ライブラリ(.so、.dll、.dylib)が存在することに依存します。
CI では
共有オブジェクトの欠落は build 時ではなく実行時に "error while loading shared libraries" や "cannot open shared object file" として表面化するため、build ステージを通過して後で失敗することがあります。
関連ガイド
Static Linking - CI/CD Glossary DefinitionStatic Linking: Static linking copies the machine code of needed library functions directly into the final ex…
Linking - CI/CD Glossary DefinitionLinking: Linking is the build step that combines compiled object files and libraries into a single executable…
ABI (Application Binary Interface) - CI/CD Glossary DefinitionABI (Application Binary Interface): An ABI (application binary interface) is the low-level contract between b…