Static Linking - Definição do Glossário CI/CD
O static linking copia o código de máquina das funções de biblioteca necessárias diretamente no executável final em tempo de build, produzindo um binário autossuficiente sem dependências externas de runtime.
Trade-offs
Binários estáticos são maiores, mas rodam em qualquer lugar sem bibliotecas compartilhadas correspondentes, o que os torna convenientes para containers e runners efêmeros.
Guias relacionados
Dynamic Linking - CI/CD Glossary DefinitionDynamic Linking: Dynamic linking resolves library references at load time or run time rather than build time,…
Linking - CI/CD Glossary DefinitionLinking: Linking is the build step that combines compiled object files and libraries into a single executable…
ABI (Application Binary Interface) - CI/CD Glossary DefinitionABI (Application Binary Interface): An ABI (application binary interface) is the low-level contract between b…