diff options
Diffstat (limited to 'tools/installer/icons/i386pe-ico.x')
-rw-r--r-- | tools/installer/icons/i386pe-ico.x | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/installer/icons/i386pe-ico.x b/tools/installer/icons/i386pe-ico.x new file mode 100644 index 0000000000..6db53b6bc6 --- /dev/null +++ b/tools/installer/icons/i386pe-ico.x @@ -0,0 +1,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) + } +} |