target triple - CI/CD用語集の定義
target triple は、コンパイラが build すべきプラットフォームを識別する文字列で、慣例として arch-vendor-os-abi の形式です。例えば x86_64-unknown-linux-gnu や aarch64-apple-darwin などです。
使い方
クロスコンパイルのツールチェーン(rustc --target、Clang --target)に triple を渡して、出力のアーキテクチャ、オペレーティングシステム、ABI を選択します。
関連ガイド
Cross-Compilation - CI/CD Glossary DefinitionCross-Compilation: Cross-compilation is building an executable on one platform (the host) that runs on a diff…
ABI (Application Binary Interface) - CI/CD Glossary DefinitionABI (Application Binary Interface): An ABI (application binary interface) is the low-level contract between b…
Compilation - CI/CD Glossary DefinitionCompilation: Compilation is the process of translating source code into a lower-level form (machine code, byt…