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

armlink --info option?

I have a Cortex-M4 project which I build from the command line and from Arm Dev Studio.  I specify armlink option:

Fullscreen
1
--info=sizes
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

It seems that in Arm Dev Studio armlink produces a nice table:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
==============================================================================
Image component sizes
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
424 76 0 0 36 4159 Blinky.o
4 0 0 0 0 914 RTX_Config.o
188 12 0 0 0 824 irq_armv7m.o
110 16 0 0 1 3530 os_systick.o
108 4 0 0 0 3339 rtx_delay.o
130 0 0 0 0 24120 rtx_evr.o
628 36 11 164 0 17434 rtx_kernel.o
200 12 268 0 5949 8022 rtx_lib.o
260 0 0 0 0 2946 rtx_memory.o
228 0 0 0 0 16073 rtx_mempool.o
1566 24 0 0 0 20146 rtx_msgqueue.o
1134 28 0 0 0 10951 rtx_mutex.o
376 18 0 0 0 5835 rtx_system.o
2496 90 0 0 0 35789 rtx_thread.o
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

but on the command line I just get:

Fullscreen
1
Program Size: Code=109268 RO-data=19812 RW-data=196 ZI-data=18536
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

How do I get the full table from the command line?

0