We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 804f718 commit adad58fCopy full SHA for adad58f
n64.ld
@@ -35,6 +35,7 @@ SECTIONS {
35
. = ALIGN(16);
36
*(.text)
37
*(.text.*)
38
+ KEEP(*(keep.text.*))
39
*(.init)
40
*(.fini)
41
*(.gnu.linkonce.t.*)
@@ -54,6 +55,7 @@ SECTIONS {
54
55
*(.rdata)
56
*(.rodata)
57
*(.rodata.*)
58
+ KEEP(*(keep.rodata.*))
59
*(.gnu.linkonce.r.*)
60
. = ALIGN(8);
61
}
@@ -100,6 +102,7 @@ SECTIONS {
100
102
__data_start = .;
101
103
*(.data)
104
*(.data.*)
105
+ KEEP(*(keep.data.*))
106
*(.gnu.linkonce.d.*)
107
108
0 commit comments