blob: 6db53b6bc6e647af64a0bca34d115b24d969a499 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Default linker script, for normal executables */
OUTPUT_FORMAT(pei-i386)
SECTIONS
{
/* Make the virtual address and file offset synced if the alignment is
lower than the target page size. */
. = SIZEOF_HEADERS;
. = ALIGN(__section_alignment__);
.rsrc __image_base__ + BLOCK(__section_alignment__) :
{
*(.rsrc)
*(SORT(.rsrc$*))
}
/DISCARD/ :
{
*(.edata)
}
}
|