Closed austinglaser closed 4 years ago
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @therealprof (or someone else) soon.
If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes.
Please see the contribution instructions for more information.
Turns out that a) this particular fix is incomplete, and b) it was needed anyway for #54. So I'm closing this PR in favor of that one
When following the example in the memory layout chapter, I found that linking with rustc 1.39.0 (command
cargo rustc -- -C link-arg=-Tlink.x
) produced the following error:This can be solved by adding
.ARM.exidx
alone (no.*
extension) to the/DISCARD/
portion oflink.x
. This change should be backwards compatible to older versions of tooling which, presumably, do not emit the bare top-level section.Fixes #50