aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-03-15 17:40:19 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2021-03-15 17:40:19 +0200
commitd156a5bf40f16b968152e80f6c9c63fe1f6ff1cc (patch)
tree900f76c963533fca41d6fea744a3d56bcc42410a /linker.ld
parentCGA: map and set buffer address in kernel main (diff)
downloadkernel.cpp-d156a5bf40f16b968152e80f6c9c63fe1f6ff1cc.tar.xz
Enable ThinLTO
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld2
1 files changed, 1 insertions, 1 deletions
diff --git a/linker.ld b/linker.ld
index a9c6ec8..764b78b 100644
--- a/linker.ld
+++ b/linker.ld
@@ -51,7 +51,7 @@ SECTIONS
.bss ALIGN(4K) : AT(ADDR(.bss) - VADDR_BASE + 4M) {
begin_bss = .;
*(.pages)
- *(.bss)
+ *(.bss*)
*(.stack)
end_bss = .;
}