| Index: tools/binary_size/describe.py
|
| diff --git a/tools/binary_size/describe.py b/tools/binary_size/describe.py
|
| index f64992da1e1b877aa40e836daa7d5a36ce68478c..3f4b3e06ff9857ed51fa87e58ad22390461bf369 100644
|
| --- a/tools/binary_size/describe.py
|
| +++ b/tools/binary_size/describe.py
|
| @@ -35,7 +35,8 @@ class Describer(object):
|
| return
|
|
|
| yield '{}@0x{:<8x} {:<7} {}'.format(
|
| - sym.section, sym.address, sym.size, sym.path or '<no path>')
|
| + sym.section, sym.address, sym.size,
|
| + sym.source_path or sym.object_path or '{no path}')
|
| if sym.name:
|
| yield '{:22}{}'.format('', sym.name)
|
|
|
|
|