Tauno Voipio wrote:
> Paul Burke wrote:
>
>> I've read the F manuals and I'm still no wiser... anyone know
>> how I can get a memory usage listing from gcc (I'm using
>> msp430-gcc)? I've tried -fmem-report, doesn't not do nowt.
>
> If you're looking for assembly listings try adding
>
> -Wa,-ahlms=myfile.lst
>
> to the gcc compilation command line.
I use: gcc -gstabs+ -Wa,-ahldn -c | less
possibly with -Os, -O1, -O2 or -O3. The output can be redirected
to a file if you want to keep it around.
>
> If you're looking for the big picture after linking,
> get a linker map by adding
>
> -Wl,-Map=myfile.map,--cref
>
> to the gcc command line performing the final link.
>
> If the module cross-reference produces too much output,
> use the simpler form
>
> -Wl,-Map=myfile.map
>
> Please do not put any extra spaces in the switches or
> they will be misunderstood by the toolchain.
--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Also see <http://www.safalra.com/special/googlegroupsreply/>
|