コンパイル単位 - CI/CD 用語集の定義
コンパイル単位は、コンパイラが独立して翻訳するソースの単位(.c とその include、または Rust の crate)で、1 つの object file を出力します。インクリメンタル build が変更された部分のみを再コンパイルする粒度となります。
関連ガイド
Object File - CI/CD Glossary DefinitionAn object file is the compiler’s machine-code output for one source unit, not yet runnable - the linker combi…
Build Target - CI/CD Glossary DefinitionA build target is a named unit a build system knows how to produce - a binary, library, or test - along with…
Optimization Level - CI/CD Glossary DefinitionAn optimization level (-O0 to -O3, -Os) tells the compiler how aggressively to optimize, trading compile time…