diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-17 14:57:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-17 14:57:45 +0000 |
commit | 11771cfdeade7fbb283a208138c6561ba779779c (patch) | |
tree | 581a04d194df28c44594545c496976b25b0e1c2e /tools/installer/icons/i386pe-ico.x | |
parent | b968287dc40d6c6207c2ab758a22cfc9c10917b2 (diff) |
'tools' folder renamed
git-svn-id: http://svn.miranda-ng.org/main/trunk@12 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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) + } +} |