source: mainline/uspace/lib/c/arch/sparc64/_link.ld.in@ 47b7006

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

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

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