We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efb38ce commit 4613c36Copy full SHA for 4613c36
linker.ld
@@ -15,5 +15,8 @@ SECTIONS {
15
*(.debug*)
16
*(.eh_frame*)
17
}
18
+ .symtab : { *(.symtab) }
19
+ .strtab : { *(.strtab) }
20
+ .shstrtab : { *(.shstrtab) }
21
22
__bss_size = (__bss_end - __bss_start) >> 3;
toolset.json
@@ -18,6 +18,7 @@
"--gc-sections",
"--print-gc-sections",
"--strip-all",
+ "--orphan-handling=error",
"-T", "linker.ld",
23
"-Map", ".build/kernel.map",
24
]
0 commit comments