source: mainline/uspace/lib/libc/arch/sparc64/_link.ld.in@ 12f91130

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 12f91130 was 00acd66, checked in by Jakub Jermar <jakub@…>, 18 years ago

New, better-structured, directory layout for uspace.

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