Subversion Repositories HelenOS-historic

Rev

Rev 908 | Rev 948 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
908 jermar 1
OUTPUT_FORMAT(elf64-ia64-little)
2
STARTUP(../libc/arch/ARCH/src/entry.o)
3
ENTRY(__entry)
4
 
5
SECTIONS {
917 jermar 6
	.text 0x00010000 : {
908 jermar 7
		*(.text)
8
		*(.rodata .rodata.*)
9
		*(.opd)
10
		*(.data)
11
		*(.got .got.*)
12
		*(.sdata)
13
		*(.sbss)
14
		*(.scommon)
15
		*(.bss)
16
		*(COMMON);
17
	}
18
 
19
	/DISCARD/ : {
20
		*(.note.GNU-stack);
21
		*(.comment);
22
        }
23
}