gnu linker section of non-contiguous memory region
问题 I'm trying to write a linker script to write one section content into two non-contiguous memory regions. I have found an old thread in this mail list about this: "ld linker script and non-contiguous memory region" http://sourceware.org/ml/binutils/2012-01/msg00188.html I know a feature from the C28x Compiler for this problem is spliting the sections across multiple memory segments: (with an or function) SECTIONS { .text: { *(.text) } >> FLASH1| FLASH3 } described here: http://processors.wiki