summaryrefslogtreecommitdiff
path: root/tests/projects/c/linker_scripts/src/main.lds
blob: 888c10be1c162c9cedc2d4639cd5150f03a2a368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SECTIONS
{
  . = 0x10000;
  .text : { *(.text) }
  .init_array :
  {
      PROVIDE_HIDDEN (__init_array_start = .);
      KEEP (*(SORT(.init_array.*)))
      KEEP (*(.init_array*))
      PROVIDE_HIDDEN (__init_array_end = .);
  }
  . = 0x8000000;
  .data : { *(.data) }
  .bss : { *(.bss) }
}