Cross-Compilation - CI/CD用語集の定義
クロスコンパイルは、ビルドホストとは異なるターゲットアーキテクチャや OS 向けの実行ファイルを生成し、1 台の CI runner がネイティブハードウェアなしで多数のプラットフォーム向けのバイナリ(例えば x86 上でビルドされる ARM64 イメージ)を出力できるようにします。
関連ガイド
Target Triple - CI/CD Glossary DefinitionA target triple is a string like x86_64-unknown-linux-gnu naming the architecture, vendor, OS, and ABI a tool…
ABI Compatibility - CI/CD Glossary DefinitionABI compatibility means compiled binaries agree on calling conventions and layouts, so a library can be swapp…
Static Linking - CI/CD Glossary DefinitionStatic linking bakes all library code into the binary at build time, producing a larger but self-contained ex…