Static Linking - CI/CD用語集の定義
静的リンクは、必要なライブラリコードをビルド時に実行ファイルへ直接コピーし、対応する shared library なしにどこでも動作する、より大きく自己完結型のバイナリを生成します - distroless や scratch イメージに最適です。
関連ガイド
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…