summaryrefslogtreecommitdiffstats
path: root/binutils-2.24/ld/testsuite/ld-pe/image_size.t
blob: f646eca59218ba0b675cbf496f7e638cd2759fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SECTIONS
{
  . = SIZEOF_HEADERS;
  . = ALIGN(__section_alignment__);
  .text  __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
  {
    *(.text)
  }
  . = . + 0x1000;
  .data BLOCK(__section_alignment__) :
  {
    *(.data)
  }
  /DISCARD/ : { *(.*) }
}