diff options
author | 2018-09-06 22:38:23 +0200 | |
---|---|---|
committer | 2018-09-06 22:42:02 +0200 | |
commit | 5975c99f34c2621422589d9e317592e693c5f2b9 (patch) | |
tree | f38f3a3d71f5a1f1dbb7fb498f29ec7206e39d47 /cortex-m-rt/CHANGELOG.md | |
parent | b947f36aa5cc7316dce2e7d012978740fb166dc3 (diff) | |
download | cortex-m-5975c99f34c2621422589d9e317592e693c5f2b9.tar.gz cortex-m-5975c99f34c2621422589d9e317592e693c5f2b9.tar.zst cortex-m-5975c99f34c2621422589d9e317592e693c5f2b9.zip |
error during compilation if two copies of cortex-m-rt are being linked
linking two copies into the final binary produces a confusing linker error
message. This improves the situation by producing an error at compile time.
This will have to be backported into the v0.5.x series or you won't get the new
error message.
Diffstat (limited to 'cortex-m-rt/CHANGELOG.md')
-rw-r--r-- | cortex-m-rt/CHANGELOG.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index dce4dfc..7721d91 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.6.1] - 2018-09-06 + +### Changed + +- Produce a better error message if two (or more) copies of `cortex-m-rt` are + going to be linked into a binary. + ## [v0.6.0] - 2018-09-06 ### Changed @@ -351,7 +358,9 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.3...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.1...HEAD +[v0.6.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.6.0...v0.6.1 +[v0.6.0]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.3...v0.6.0 [v0.5.3]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.2...v0.5.3 [v0.5.2]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.1...v0.5.2 [v0.5.1]: https://github.com/rust-embedded/cortex-m-rt/compare/v0.5.0...v0.5.1 |