Subversion Repositories HelenOS-historic

Rev

Rev 985 | Rev 1120 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 985 Rev 1105
Line 14... Line 14...
14
	} :text
14
	} :text
15
	.text : {
15
	.text : {
16
	        *(.text);
16
	        *(.text);
17
		*(.rodata*);
17
		*(.rodata*);
18
	} :text
18
	} :text
19
	
19
 
20
	.data ALIGN(0x4000) : SUBALIGN(0x4000) {
20
	.got ALIGN(0x4000) : SUBALIGN(0x4000) {
-
 
21
		_gp = .;
-
 
22
		*(.got);
-
 
23
	} :data
-
 
24
	.data : {
21
		*(.data);
25
		*(.data);
22
	} :data
26
	} :data
-
 
27
	.sbss : {
-
 
28
		*(.scommon);
-
 
29
		*(.sbss);
-
 
30
	}	
23
	.bss : {
31
	.bss : {
24
		*(.bss);
32
		*(.bss);
25
		*(.sbss);
-
 
26
		*(COMMON);
33
		*(COMMON);
27
		_heap = .;
34
		_heap = .;
28
		LONG(0xdeadbeef);
35
		LONG(0xdeadbeef);
29
	} :data
36
	} :data
30
	
37
 
31
	/DISCARD/ : {
38
	/DISCARD/ : {
32
		*(*);
39
		*(*);
33
	}
40
	}
34
}
41
}