Subversion Repositories HelenOS-historic

Rev

Rev 917 | Rev 985 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 917 Rev 948
1
OUTPUT_FORMAT(elf64-ia64-little)
-
 
2
STARTUP(../libc/arch/ARCH/src/entry.o)
1
STARTUP(../libc/arch/ARCH/src/entry.o)
3
ENTRY(__entry)
2
ENTRY(__entry)
4
 
3
 
-
 
4
PHDRS {
-
 
5
	text PT_LOAD FLAGS(5);
-
 
6
	data PT_LOAD FLAGS(6);
-
 
7
}
-
 
8
 
5
SECTIONS {
9
SECTIONS {
-
 
10
	. = 0x4000;
-
 
11
 
-
 
12
	.init ALIGN(0x4000): SUBALIGN(0x4000) {
-
 
13
		*(.init);
-
 
14
	} : text
6
	.text 0x00010000 : {
15
	.text : {
7
		*(.text)
16
		*(.text);
8
		*(.rodata .rodata.*)
17
		*(.rodata*);
-
 
18
	} :text
-
 
19
 
-
 
20
	.got ALIGN(0x4000) : SUBALIGN(0x4000) {
9
		*(.opd)
21
		*(.got*);
10
		*(.data)
22
	} :data	
-
 
23
	.data : {
-
 
24
		_gp = .;
11
		*(.got .got.*)
25
		*(.opd);
12
		*(.sdata)
26
		*(.data);
13
		*(.sbss)
27
		*(.sdata);
-
 
28
	} :data
14
		*(.scommon)
29
	.bss : {
15
		*(.bss)
30
		*(.sbss);
-
 
31
		*(.scommon);
16
		*(COMMON);
32
		*(COMMON);
-
 
33
		*(.bss);
17
	}
34
	} :data
18
 
35
 
19
	/DISCARD/ : {
36
	/DISCARD/ : {
20
		*(.note.GNU-stack);
-
 
21
		*(.comment);
37
		*(*);
22
        }
38
        }
23
}
39
}
24
 
40