Symbol Table - CI/CD用語集の定義
シンボルテーブルは、object file やバイナリの中で識別子(関数、グローバル変数)をアドレスにマッピングするセクションです。linker は参照を解決するためにこれを参照し、debugger は stack trace をシンボル化するために読み取ります。
関連ガイド
Stripping Binaries - CI/CD Glossary DefinitionStripping a binary removes its symbol and debug information to shrink it for release, at the cost of readable…
Debug Symbols - CI/CD Glossary DefinitionDebug symbols map machine code back to source lines, variables, and types, letting debuggers and crash report…
Stack Trace - CI/CD Glossary DefinitionA stack trace is the ordered list of function calls active when an error occurred, showing the path the progr…