Files
JoyD/ESP32/my_usb_project/custom_ld_script.ld

11 lines
310 B
Plaintext

/* Custom linker script fragment for ESP32-S3 */
/* Fixes segment overlap issue by ensuring proper 64KB alignment */
/* Ensure .flash.rodata starts at 64KB boundary */
.flash.rodata : ALIGN(0x10000)
{
*(.flash.rodata .flash.rodata.*)
*(.flash.rodata1)
*(.flash_rodata_align)
} >default_rodata_seg