Subversion Repositories HelenOS

Rev

Rev 3027 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3027 Rev 4055
1
OUTPUT_FORMAT("elf64-sparc")
1
OUTPUT_FORMAT("elf64-sparc")
2
ENTRY(start)
2
ENTRY(start)
3
 
3
 
4
SECTIONS {
4
SECTIONS {
5
	.boot 0x4000: AT (0x4000) {
5
	.boot 0x4000: AT (0x4000) {
6
		*(BOOTSTRAP);
6
		*(BOOTSTRAP);
7
		*(.text);
7
		*(.text);
8
		*(.rodata);
8
		*(.rodata);
9
		*(.rodata.*);
9
		*(.rodata.*);
10
		*(.data);               /* initialized data */
10
		*(.data);               /* initialized data */
11
		*(.sdata);
11
		*(.sdata);
12
		*(.sdata2);
12
		*(.sdata2);
13
		*(.sbss);
13
		*(.sbss);
14
		*(.bss);                /* uninitialized static variables */
14
		*(.bss);                /* uninitialized static variables */
15
		*(COMMON);
15
		*(COMMON);
16
[[COMPONENTS]]
16
[[COMPONENTS]]
17
	}
17
	}
18
	
18
	
19
	/DISCARD/ : {
19
	/DISCARD/ : {
20
		*(.comment);
20
		*(.comment);
21
		*(.note*);
21
		*(.note*);
22
	}
22
	}
23
}
23
}
24
 
24