Skip to content

Commit 5a1eedd

Browse files
committed
add paragraph about nightly
1 parent fdd6a16 commit 5a1eedd

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

posts/2019-12-30-reducing-support-for-apple-32bit-targets.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,24 @@ The code implementing the targets won’t be removed from the compiler codebase,
8787
so you’ll also be able to build future releases from source on your own
8888
(keeping in mind they might have bugs or be broken, as that code will be
8989
completly untested).
90+
91+
# What about the nightly channel?
92+
93+
We will demote the targets on the nightly channel soon, but we don't have an
94+
exact date for when that will happen. We recommend pinning a nightly version
95+
beforehand though, to prevent `rustup toolchain install` from failing once we
96+
apply the demotion.
97+
98+
To pin a nightly version you need to use "nightly" followed by the day the
99+
nightly was released, as the toolchain name. For example, to install the nightly
100+
released on December 1st, 2019 and to use it you can run:
101+
102+
```plain
103+
rustup toolchain install nightly-2019-12-01
104+
105+
# Default to this nightly system-wide...
106+
rustup default nightly-2019-12-01
107+
108+
# ...or use this nightly for a single build
109+
cargo +nightly-2019-12-01 build
110+
```

0 commit comments

Comments
 (0)