aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elf/overlay.t
blob: dd374bb68b8211e885724207675f6b11077accc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
SECTIONS
{
  . = SIZEOF_HEADERS;
  .text : { *(.text) }
  OVERLAY 0x1000 : AT (0x4000)
  {
    .text1 {*(.text1)}
    .text2 {*(.text2)}
  } 
  /DISCARD/ : { *(.*) }
}