-
Notifications
You must be signed in to change notification settings - Fork 1
/
link.ld
executable file
·64 lines (57 loc) · 1.03 KB
/
link.ld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
phys = 0x00100000;
SECTIONS
{
. = phys;
_kernel_start = phys;
.mboot : AT ( ADDR( .mboot ) )
{
*(multiboot*)
}
.text ALIGN(4096) : AT(ADDR(.text))
{
code = .;
*(.text*)
*(.gnu.linkonce.t*)
}
.rodata ALIGN(4096) : AT(ADDR(.rodata))
{
rodata = .;
*(.rodata*)
*(.gnu.linkonce.r.*)
_ro_end = .;
}
.data ALIGN(4096) : AT(ADDR(.text) + (data - code))
{
data = .;
*(.data*)
*(.gnu.linkonce.d*)
}
.ctors ALIGN(4096) : AT(ADDR(.text) + (start_ctors - code))
{
start_ctors = .;
KEEP(*(SORT(.ctors.*)))
KEEP(*(.ctors))
end_ctors = .;
}
.dtors ALIGN(4096) : AT(ADDR(.text) + (start_dtors - code))
{
start_dtors = .;
KEEP(*(SORT(.dtors.*)))
KEEP(*(.dtors))
end_dtors = .;
}
.bss ALIGN(4096) : AT(ADDR(.text) + (bss - code))
{
bss = .;
*(.COMMON*)
*(.bss*)
*(.gnu.linkonce.b*)
}
/DISCARD/ :
{
*(.fini_array*)
*(.comment)
*(.eh_frame) /* You should discard this unless you're implementing runtime support for C++ exceptions. */
}
_kernel_end = .;
}