Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

- Fix nightly regression by manually passing --gc-sections ([#168](https://github.com/rust-osdev/bootloader/pull/168))

# 0.9.17 – 2021-04-30

- Reduce the number of used unstable features of x86_64 crate (backport [#155](https://github.com/rust-osdev/bootloader/pull/140))
Expand Down
5 changes: 3 additions & 2 deletions x86_64-bootloader.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
"linker": "rust-lld",
"pre-link-args": {
"ld.lld": [
"--script=linker.ld"
]
"--script=linker.ld",
"--gc-sections"
]
},
"target-endian": "little",
"target-pointer-width": "64",
Expand Down