Subversion Repositories HelenOS-historic

Rev

Rev 908 | Rev 948 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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