Project

General

Profile

Statistics
| Branch: | Revision:

root / prex-0.9.0 / usr / arch / ppc / user-nommu.ld @ 03e9c04a

History | View | Annotate | Download (355 Bytes)

1 03e9c04a Brad Neuman
OUTPUT_FORMAT("elf32-powerpc")
2
OUTPUT_ARCH(powerpc)
3
ENTRY(_start)
4
5
SECTIONS {
6
	. = SIZEOF_HEADERS;
7
8
	.text . : {
9
		*(.text)
10
	}
11
	. = ALIGN(4);
12
	.rodata . : {
13
		*(.rodata)
14
		*(.rodata.*)
15
	}
16
	. = ALIGN(4);
17
	.data . : {
18
		*(.data)
19
		*(.sdata)
20
		*(.sdata2)
21
	}
22
	. = ALIGN(4);
23
	.bss . : {
24
		*(.sbss)
25
		*(.bss)
26
		*(COMMON)
27
	}
28
	/DISCARD/ : { *(.comment .note) }
29
}