Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
13a6aef
Clean up E0715 explanation
GuillaumeGomez Jul 1, 2020
818aaa7
Clean up E0716 explanation
GuillaumeGomez Jul 2, 2020
6582240
Remove `Compiler::compile()`.
nnethercote Jul 7, 2020
970174a
Add option to collapse automatically implementors
GuillaumeGomez Jul 9, 2020
2ca24b6
Add margin after doc search results
GuillaumeGomez Jul 10, 2020
933ba82
RISC-V GNU/Linux as host platform
msizanoen1 Nov 30, 2019
304f008
Update cross-compilation README
Jul 13, 2020
e1106ca
Fix typo
Jul 13, 2020
92e010e
Move all code-snippets to /tmp/ as basedir
Jul 13, 2020
538f157
Added docs for `From<c_int>` for `ExitStatus`
regexident Jul 13, 2020
c44ca17
Remove string comparison and use diagnostic item instead
estebank Jul 14, 2020
ce3bd29
Handle case of incomplete local ty more gracefully
estebank Jul 14, 2020
6a783af
Edit docs for rustc_middle::dep_graph::dep_node
pierwill Jul 15, 2020
fcf52c1
improve DiscriminantKind handling
lcnr Jul 15, 2020
f6764c4
Initialize default providers only once
jyn514 Jul 15, 2020
39d99ea
Improve settings wording
GuillaumeGomez Jul 9, 2020
2ba58f9
Add a 1.45 release note on lto vs. embed-bitcode
cuviper Jul 15, 2020
af3d4cb
Rollup merge of #72973 - msizanoen1:riscv-host, r=pietroalbini
Manishearth Jul 15, 2020
7307af1
Rollup merge of #73918 - GuillaumeGomez:cleanup-e0715, r=Dylan-DPC
Manishearth Jul 15, 2020
1527126
Rollup merge of #73959 - GuillaumeGomez:cleanup-e0716, r=Dylan-DPC
Manishearth Jul 15, 2020
0bb16c8
Rollup merge of #74119 - nnethercote:rm-Compiler-compile, r=Mark-Simu…
Manishearth Jul 15, 2020
efad203
Rollup merge of #74196 - GuillaumeGomez:auto-collapse-implementors, r…
Manishearth Jul 15, 2020
0d07db9
Rollup merge of #74218 - GuillaumeGomez:search-results-bottom-margin,…
Manishearth Jul 15, 2020
47f6a9d
Rollup merge of #74276 - lcnr:discriminant-kind-what, r=nagisa
Manishearth Jul 15, 2020
b7cf2cb
Rollup merge of #74291 - regexident:from-docs, r=GuillaumeGomez
Manishearth Jul 15, 2020
64a2788
Rollup merge of #74294 - msirringhaus:master, r=pietroalbini
Manishearth Jul 15, 2020
f4bbd0e
Rollup merge of #74337 - estebank:ty-parse-recovery, r=varkor
Manishearth Jul 15, 2020
bee2899
Rollup merge of #74344 - estebank:stringly-wobbly, r=eddyb
Manishearth Jul 15, 2020
dceafac
Rollup merge of #74347 - jyn514:ive-got-a-small-query-for-you, r=eddyb
Manishearth Jul 15, 2020
c43a115
Rollup merge of #74353 - pierwill:pierwill-edit-dep-node, r=jonas-sch…
Manishearth Jul 15, 2020
0bde1c3
Rollup merge of #74374 - cuviper:lto-bitcode-1.45, r=Mark-Simulacrum
Manishearth Jul 15, 2020
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
Prev Previous commit
Next Next commit
Add a 1.45 release note on lto vs. embed-bitcode
  • Loading branch information
cuviper committed Jul 15, 2020
commit 2ba58f982349d0ea24630c456d38457b0c8d9e01
10 changes: 10 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ Stabilized APIs
Cargo
-----

- [Cargo uses the `embed-bitcode` flag to optimize disk usage and build
time.][cargo/8066]

Misc
----
- [Rustdoc now supports strikethrough text in Markdown.][71928] E.g.
Expand All @@ -97,12 +100,18 @@ Compatibility Notes
- [Rustdoc's CLI's extra error exit codes have been removed.][71900] These were
previously undocumented and not intended for public use. Rustdoc still provides
a non-zero exit code on errors.
- [Rustc's `lto` flag is incompatible with the new `embed-bitcode=no`.][71848]
This may cause issues if LTO is enabled through `RUSTFLAGS` or `cargo rustc`
flags while cargo is adding `embed-bitcode` itself. The recommended way to
control LTO is with Cargo profiles, either in `Cargo.toml` or `.cargo/config`,
or by setting `CARGO_PROFILE_<name>_LTO` in the environment.

Internals Only
--------------
- [Make clippy a git subtree instead of a git submodule][70655]
- [Unify the undo log of all snapshot types][69464]

[71848]: https://github.com/rust-lang/rust/issues/71848/
[73420]: https://github.com/rust-lang/rust/issues/73420/
[72324]: https://github.com/rust-lang/rust/pull/72324/
[71843]: https://github.com/rust-lang/rust/pull/71843/
Expand All @@ -129,6 +138,7 @@ Internals Only
[69813]: https://github.com/rust-lang/rust/pull/69813/
[69464]: https://github.com/rust-lang/rust/pull/69464/
[68717]: https://github.com/rust-lang/rust/pull/68717/
[cargo/8066]: https://github.com/rust-lang/cargo/pull/8066
[`Arc::as_ptr`]: https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#method.as_ptr
[`BTreeMap::remove_entry`]: https://doc.rust-lang.org/stable/std/collections/struct.BTreeMap.html#method.remove_entry
[`Rc::as_ptr`]: https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#method.as_ptr
Expand Down