Static Linking - Definição do Glossário de CI/CD
Static linking copia o código de biblioteca necessário diretamente para o executável em tempo de build, gerando um binário maior e autocontido que roda em qualquer lugar sem shared libraries correspondentes - ideal para imagens distroless e scratch.
Guias relacionados
Dynamic Linking - CI/CD Glossary DefinitionDynamic linking resolves library references at load or run time from shared libraries on the system, keeping…
Shared Library - CI/CD Glossary DefinitionA shared library (.so, .dll, .dylib) is reusable compiled code loaded by many programs at run time, so a fix…
Stripping Binaries - CI/CD Glossary DefinitionStripping a binary removes its symbol and debug information to shrink it for release, at the cost of readable…