Tool to analyze size of ELF sections and symbol

前端 未结 3 1786
予麋鹿
予麋鹿 2020-12-02 10:26

I need a way to analyze output file of my GCC compiler for ARM. I am compiling for bare metal and I am quite concerned with size. I can use arm-none-eabi-objdump

3条回答
  •  渐次进展
    2020-12-02 11:08

    puncover uses objdump and a few other gcc tools to generate html pages you can easily browse to figure out where your code and data space is going.

    It's a much nicer frontend than the text output of the gcc tools.

提交回复
热议问题