-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlink_map.ld
More file actions
executable file
·78 lines (60 loc) · 1.06 KB
/
link_map.ld
File metadata and controls
executable file
·78 lines (60 loc) · 1.06 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
ENTRY(_entrypoint_)
GROUP(libgcc.a libc.a libm.a)
SECTIONS
{
.text :
{
__text_start__ = .;
*(.entry)
__boot_start__ = .;
*(.boot)
*(.text)
*(.text.*)
KEEP(*(.init))
KEEP(*(.fini))
. = ALIGN(32);
}
.data :
{
__etext = .;
. = ALIGN(32);
__data_start__ = .;
*(vtable)
*(.data*)
. = ALIGN(4);
/* preinit data */
PROVIDE_HIDDEN (__preinit_array_start = .);
KEEP(*(.preinit_array))
PROVIDE_HIDDEN (__preinit_array_end = .);
. = ALIGN(4);
/* init data */
PROVIDE_HIDDEN (__init_array_start = .);
KEEP(*(SORT(.init_array.*)))
KEEP(*(.init_array))
PROVIDE_HIDDEN (__init_array_end = .);
. = ALIGN(4);
/* finit data */
PROVIDE_HIDDEN (__fini_array_start = .);
KEEP(*(SORT(.fini_array.*)))
KEEP(*(.fini_array))
PROVIDE_HIDDEN (__fini_array_end = .);
. = ALIGN(4);
/* All data end */
__data_end__ = .;
}
.bss :
{
. = ALIGN(32);
__bss_start__ = .;
*(.bss*)
*(.reserved)
*(COMMON)
*(COM)
. = ALIGN(4);
__bss_end__ = .;
}
/DISCARD/ :
{
*(.ARM.exidx)
}
}