summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarren Galloway <warrengalloway63@gmail.com>2020-05-27 20:54:51 -0400
committerWarren Galloway <warrengalloway63@gmail.com>2020-05-27 20:54:51 -0400
commit77d7a284c02bc6b1b3a3a92ad5d957172cee9b81 (patch)
tree184a9df60b96597c4957d02c8ce4063cc340a416
parent0d121f99f3c68406db847de7eb1f7bcdedac0d7b (diff)
downloadportland-os-77d7a284c02bc6b1b3a3a92ad5d957172cee9b81.tar.gz
Keep bss until object copy phase to work with newer versions of binutils
-rw-r--r--src/kernel/link.ld4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/link.ld b/src/kernel/link.ld
index 1fc64fd..7c7b28d 100644
--- a/src/kernel/link.ld
+++ b/src/kernel/link.ld
@@ -11,7 +11,7 @@ SECTIONS {
*(.rodata)
*(.data)
}
- /DISCARD/ : {
+ .bss : {
*(.bss)
}
-} \ No newline at end of file
+}