source: mainline/boot/arch/sparc64/_link.ld.in@ 6d15572

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 6d15572 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: 398 bytes
Line 
1ENTRY(start)
2
3SECTIONS {
4 . = 0x4000;
5 .boot : {
6 *(BOOTSTRAP);
7 *(.text);
8
9 *(.data); /* initialized data */
10 *(.rodata);
11 *(.rodata.*);
12 *(.sdata);
13 *(.reginfo);
14 *(.sbss);
15 *(.bss); /* uninitialized static variables */
16 *(COMMON); /* global variables */
17 *(.components);
18 }
19
20 /DISCARD/ : {
21 *(.gnu.*);
22 *(.mdebug*);
23 *(.pdr);
24 *(.comment);
25 *(.note.*);
26 }
27}
Note: See TracBrowser for help on using the repository browser.