source: mainline/boot/arch/ia64/_link.ld.in@ efb9fd08

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since efb9fd08 was 4646710, checked in by Martin Decky <martin@…>, 8 years ago

replace objcopy with mkarray.py
(objcopy is notoriously problematic due to the uncontrolable way how it generates the object files, with what flags, etc.)

  • Property mode set to 100644
File size: 400 bytes
Line 
1OUTPUT_FORMAT("elf64-ia64-little")
2ENTRY(start)
3
4SECTIONS {
5 .boot 0x4400000: AT (0x4400000) {
6 *(BOOTSTRAP);
7 *(.text);
8 *(.sdata);
9 *(.sdata2);
10 *(.sbss);
11 *(.rodata);
12 *(.rodata.*);
13 *(.data .data.*); /* initialized data */
14 __gp = . ;
15 *(.got .got.*);
16 *(.bss); /* uninitialized static variables */
17 *(COMMON);
18 *(.components);
19 }
20
21 /DISCARD/ : {
22 *(.*);
23 }
24}
Note: See TracBrowser for help on using the repository browser.