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.
2 parents efb38ce + 4613c36 commit 4f5a4a7Copy full SHA for 4f5a4a7
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