source: mainline/uspace/lib/libc/arch/ia64/_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: 675 bytes
RevLine 
[00acd66]1STARTUP(../../lib/libc/arch/ARCH/src/entry.o)
[fbd6f81]2ENTRY(__entry)
3
[a3aa1e1]4PHDRS {
5 text PT_LOAD FLAGS(5);
6 data PT_LOAD FLAGS(6);
7}
8
[fbd6f81]9SECTIONS {
[a3aa1e1]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) {
[b81e7c6]21 _gp = .;
[a3aa1e1]22 *(.got*);
23 } :data
24 .data : {
25 *(.opd);
[7f9cd77]26 *(.data .data.*);
[a3aa1e1]27 *(.sdata);
28 } :data
[c4c5de5]29 .tdata : {
30 _tdata_start = .;
31 *(.tdata);
32 _tdata_end = .;
33 } :data
34 .tbss : {
35 _tbss_start = .;
36 *(.tbss);
37 _tbss_end = .;
38 } :data
[a3aa1e1]39 .bss : {
40 *(.sbss);
41 *(.scommon);
[fbd6f81]42 *(COMMON);
[a3aa1e1]43 *(.bss);
44 } :data
[07d960a]45
46 . = ALIGN(0x4000);
47 _heap = .;
[fbd6f81]48
49 /DISCARD/ : {
[a3aa1e1]50 *(*);
[fbd6f81]51 }
52}
Note: See TracBrowser for help on using the repository browser.