With below conditions, size of binary file is so big which can not be used.
- MCUXpresso 11.6.0 [Build 8187] with SDK 2.10.0 (494)
- RT1052
- Newlibnano
- Link application to RAM
With Redlib or without "Link application to RAM", binary file can be normally generated.
At binary file, most of regions are filled with 0x00 and last line filled some data.
I checked address of last line and I found that it is .ARM.exidx.
When I make binary file after removing .ARM.exidx section, normal binary data is generated.
.ARM.exidx is included at libgcc.a(_udivmoddi4.o).
[Questions]
1. Can I remove .ARM.exidx section or move memory position of .ARM.exidx section to generate small binary file?
2. If 1st solution is impossible, is there any expected problem when remove .ARM.exidx section?
To generate proper size binary data, I need to remove .ARM.exidx section.
Thanks.