Compile nrf5340 project under vscode, terminal window give flash occupied statistics, but there are three statistic block about used flash region, which report is valid(what I need) ?

use "nrf5340 cpuapp" to compile project,  flash statistics as follows, see blue color

[3/11] Linking C executable zephyr\zephyr_pre0.elf

[6/11] Linking C executable zephyr\zephyr_pre1.elf

[11/11] Linking C executable zephyr\zephyr.elf
Memory region Used Size Region Size %age Used
FLASH: 44160 B 48 KB 89.84%                                  //flash statistics go out first time 
RAM: 22848 B 448 KB 4.98%
IDT_LIST: 0 GB 2 KB 0.00%
[3/26] Linking C executable zephyr\zephyr_pre0.elf

[6/26] Linking C executable zephyr\zephyr_pre1.elf

[3/13] Linking C executable zephyr\zephyr_pre0.elf

[6/13] Linking C executable zephyr\zephyr_pre1.elf

[11/13] Linking C executable zephyr\zephyr.elf
Memory region Used Size Region Size %age Used
FLASH: 158008 B 256 KB 60.28%                             //flash statistics go out second time 
RAM: 39808 B 64 KB 60.74%
SRAM1: 0 GB 64 KB 0.00%
IDT_LIST: 0 GB 2 KB 0.00%
[12/24] Linking C executable zephyr\zephyr.elf
Memory region Used Size Region Size %age Used

FLASH: 255660 B 491008 B 52.07%                          //flash statistics go out third time 

RAM: 51784 B 448 KB 11.29%

IDT_LIST: 0 GB 2 KB 0.00%

[15/24] Generating ../../zephyr/app_update.bin
image.py: sign the payload

[17/24] Generating ../../zephyr/app_signed.hex
image.py: sign the payload

[18/24] Generating ../../zephyr/app_test_update.hex
image.py: sign the payload

[22/22] Generating zephyr/merged_domains.hex

So which is final correct one ? which one should I follow ?

Related