ランタイムリンカ - CI/CD 用語集の定義
ランタイムリンカは、プログラムの実行中に共有ライブラリ内のシンボルへの参照を解決します。起動時に eager に、または初回呼び出し時に lazy に行われます(PLT/GOT)。ライブラリの欠落や ABI 不一致は、CI ではロード時の失敗としてここに現れます。
関連ガイド
Dynamic Loader - CI/CD Glossary DefinitionThe dynamic loader is the OS component that maps a program and its shared libraries into memory and prepares…
Name Mangling - CI/CD Glossary DefinitionName mangling encodes types and namespaces into a symbol’s name so overloaded functions get unique linker sym…
Foreign Function Interface - CI/CD Glossary DefinitionAn FFI lets code in one language call functions written in another, bridging calling conventions - how high-l…