Peter Cheung <
mche...@gmail.com> wrote:
> What is the best way to parse gcc generated map file? I want to display a
> table that contains memory-offset-symbol/object.
The easiest way might be not to parse it at all. You can
use objdump to get the offset/symbol info from the .elf
file without all the extraneous detail in the map file.
The command might look something like this:
objdump -t -C app.elf >app.symbols
Mike