source: mainline/uspace/lib/c/arch/mips32/_link.ld.in@ 5587cf7

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

rename library directories (the common "lib" prefix is already in the upper directory)

  • Property mode set to 100644
File size: 660 bytes
RevLine 
[1b1164e8]1STARTUP(LIBC_PATH/arch/UARCH/src/entry.o)
[25f9823]2ENTRY(__entry)
[3eddaff]3
[a3aa1e1]4PHDRS {
5 text PT_LOAD FLAGS(5);
6 data PT_LOAD FLAGS(6);
7}
8
[3eddaff]9SECTIONS {
[1cc2974]10 . = 0x4000 + SIZEOF_HEADERS;
[a3aa1e1]11
[1cc2974]12 .init : {
[8f9239e]13 *(.init);
[a3aa1e1]14 } :text
[8f9239e]15 .text : {
16 *(.text);
17 *(.rodata*);
[a3aa1e1]18 } :text
[6122db1]19
[1cc2974]20 . = . + 0x4000;
21
[a71d9af9]22 .data : {
[8f9239e]23 *(.data);
[a71d9af9]24 *(.data.rel*);
[a3aa1e1]25 } :data
[c4c5de5]26
[e708063]27 .got : {
28 _gp = .;
[a71d9af9]29 *(.got);
[e708063]30 } :data
[c4c5de5]31
32 .tdata : {
33 _tdata_start = .;
34 *(.tdata);
35 _tdata_end = .;
36 _tbss_start = .;
37 *(.tbss);
38 _tbss_end = .;
39 } :data
[e622f0a8]40 _tls_alignment = ALIGNOF(.tdata);
[c4c5de5]41
[6122db1]42 .sbss : {
43 *(.scommon);
44 *(.sbss);
45 }
[8f9239e]46 .bss : {
47 *(.bss);
48 *(COMMON);
[a3aa1e1]49 } :data
[6122db1]50
[07d960a]51 . = ALIGN(0x4000);
52 _heap = .;
53
[8f9239e]54 /DISCARD/ : {
[d03e156]55 *(*);
56 }
[3eddaff]57}
Note: See TracBrowser for help on using the repository browser.