Skip to content

Commit

Permalink
Rollup merge of #72290 - elichai:2020-doc-lto, r=wesleywiser
Browse files Browse the repository at this point in the history
Add newer rust versions to linker-plugin-lto.md

Hi,
This doc got a bit out of date,
it's hosted here: https://doc.rust-lang.org/rustc/linker-plugin-lto.html
you can check the versions I've added via:
```bash
$ rustup install 1.38.0
$ rustc +1.38.0 -vV
rustc 1.38.0 (625451e 2019-09-23)
binary: rustc
commit-hash: 625451e
commit-date: 2019-09-23
host: x86_64-unknown-linux-gnu
release: 1.38.0
LLVM version: 9.0

$ rustup install 1.43.1
$ rustc +1.43.1 -vV
rustc 1.43.1 (8d69840 2020-05-04)
binary: rustc
commit-hash: 8d69840
commit-date: 2020-05-04
host: x86_64-unknown-linux-gnu
release: 1.43.1
LLVM version: 9.0
```
  • Loading branch information
Dylan-DPC authored May 18, 2020
2 parents 4adb9a8 + 1591196 commit 0b63bc7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/doc/rustc/src/linker-plugin-lto.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,17 @@ LLVM. However, the approximation is usually reliable.

The following table shows known good combinations of toolchain versions.

| | Clang 7 | Clang 8 |
|-----------|-----------|-----------|
| Rust 1.34 |||
| Rust 1.35 |||
| Rust 1.36 |||
| Rust 1.37 |||
| | Clang 7 | Clang 8 | Clang 9 |
|-----------|-----------|-----------|-----------|
| Rust 1.34 ||||
| Rust 1.35 ||||
| Rust 1.36 ||||
| Rust 1.37 ||||
| Rust 1.38 ||||
| Rust 1.39 ||||
| Rust 1.40 ||||
| Rust 1.41 ||||
| Rust 1.42 ||||
| Rust 1.43 ||||

Note that the compatibility policy for this feature might change in the future.

0 comments on commit 0b63bc7

Please sign in to comment.