Linking - Definição do Glossário CI/CD
O linking é a etapa de build que combina object files compilados e bibliotecas em um único executável ou biblioteca compartilhada, resolvendo referências a funções e variáveis entre módulos.
Por que falha no CI
Uma biblioteca ausente ou um símbolo não resolvido produz um erro de "undefined reference" do linker (ld). Esses erros aparecem depois que a compilação é bem-sucedida, muitas vezes quando uma dependência não está instalada no runner.
Guias relacionados
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…