This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

What is 'Debug' column in armclang map file?

In a map file generated by armclang I see this summary:

==============================================================================


      Code (inc. data)   RO Data    RW Data    ZI Data      Debug   

     31116       1464       3668         24      43056      10172   Grand Totals
     31116       1464       3668         24      43056      10172   ELF Image Totals
     31116       1464       3668         24          0          0   ROM Totals

==============================================================================

This is for a 'Release' build.  What does the 'Debug' column depict here?

Parents
  • Hi David,

    This seems to be some rogue(?) header information from the objects. Adding the linker option --nodebug forces its removal.

    Note this is 'just' debug information... it does not affect the code size of the image.

Reply
  • Hi David,

    This seems to be some rogue(?) header information from the objects. Adding the linker option --nodebug forces its removal.

    Note this is 'just' debug information... it does not affect the code size of the image.

Children