Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / prex-0.9.0 / usr / arch / x86 / user-nommu.ld @ 03e9c04a

History | View | Annotate | Download (351 Bytes)

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