リンク - CI/CD用語集の定義
リンクは、コンパイル済みの object file とライブラリを 1 つの実行可能ファイルや共有ライブラリに結合し、モジュール間の関数や変数への参照を解決する build ステップです。
CI で失敗する理由
ライブラリの欠落や未解決のシンボルは、リンカ(ld)から "undefined reference" エラーを生じさせます。これらはコンパイルの成功後に現れ、多くの場合、依存関係が runner にインストールされていないときに発生します。
関連ガイド
Static Linking - CI/CD Glossary DefinitionStatic Linking: Static linking copies the machine code of needed library functions directly into the final ex…
Dynamic Linking - CI/CD Glossary DefinitionDynamic Linking: Dynamic linking resolves library references at load time or run time rather than build time,…
Symbol Table - CI/CD Glossary DefinitionSymbol Table: A symbol table is the index inside an object file or executable that maps names (functions, glo…