mirror of
https://github.com/wled/WLED.git
synced 2026-04-20 06:04:29 +00:00
11 lines
227 B
Plaintext
11 lines
227 B
Plaintext
/* ESP32 linker script fragment to add dynamic array section to binary */
|
|
SECTIONS
|
|
{
|
|
.dynarray :
|
|
{
|
|
. = ALIGN(0x10);
|
|
KEEP(*(SORT_BY_INIT_PRIORITY(.dynarray.*)))
|
|
} > default_rodata_seg
|
|
}
|
|
INSERT AFTER .flash.rodata;
|