Shared Library - CI/CD用語集の定義
shared library(.so、.dll、.dylib)は、動的リンクを通じて複数のプログラムが実行時に読み込むコンパイル済みモジュールで、メモリとディスクを節約しますが、ABI 互換のバージョンが存在している必要があります。
関連ガイド
Dynamic Linking - CI/CD Glossary DefinitionDynamic linking resolves library references at load or run time from shared libraries on the system, keeping…
Static Linking - CI/CD Glossary DefinitionStatic linking bakes all library code into the binary at build time, producing a larger but self-contained ex…
Symbol Table - CI/CD Glossary DefinitionA symbol table maps names - functions and variables - to addresses in a binary. Linkers use it to resolve ref…