source: mainline/boot/arch/mips64/_link.ld.in@ a2fa350

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

add initial support for mips64
(it does not do anything useful so far and there are probably severe bugs and ABI violations, but it compiles)

  • Property mode set to 100644
File size: 467 bytes
Line 
1OUTPUT_FORMAT(elf64-tradlittlemips)
2ENTRY(start)
3
4SECTIONS {
5 . = 0xffffffffbfc00000;
6 .text : {
7 *(BOOTSTRAP);
8 *(.text);
9 }
10 .data : {
11 *(.data); /* initialized data */
12 *(.rodata);
13 *(.rodata.*);
14 *(.sdata);
15 *(.reginfo);
16 *(.sbss);
17 *(.scommon);
18 *(.bss); /* uninitialized static variables */
19 *(COMMON); /* global variables */
20[[COMPONENTS]]
21 }
22
23 /DISCARD/ : {
24 *(.gnu.*);
25 *(.mdebug*);
26 *(.pdr);
27 *(.comment);
28 *(.note);
29 }
30}
Note: See TracBrowser for help on using the repository browser.