This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ARM Mapfile


Francis Cagney <private@fcagney.com> writes:

> I'm trying to squeeze how much ram my software will need, and am
> confused by the output of the mapfile from the gnu compiler/linker.
> I also haven't been able to find a mapfile description anywhere.

The easy way would be to run size or objdump -h on your final
executable.

> COMMON does not seem to relate to anything ?

I think COMMON will be the amount of space required by common
variables.  They are then allocated to the .bss section.

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]