SetFastSymbolization sets a toggle that makes binutils use fast symbolization (using nm), which is much faster than addr2line but provides only symbol name information (no file/line).
(fast bool)
| 119 | // symbolization (using nm), which is much faster than addr2line but |
| 120 | // provides only symbol name information (no file/line). |
| 121 | func (bu *Binutils) SetFastSymbolization(fast bool) { |
| 122 | bu.update(func(r *binrep) { r.fast = fast }) |
| 123 | } |
| 124 | |
| 125 | // SetTools processes the contents of the tools option. It |
| 126 | // expects a set of entries separated by commas; each entry is a pair |