Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to nightly builds in first paragraph of Getting Started #10805

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
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
12 changes: 8 additions & 4 deletions doc/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ they don't contain references to names that aren't actually defined.

# Getting started

The Rust compiler currently must be built from a [tarball], unless you
are on Windows, in which case using the [installer][win-exe] is
recommended.
There are [nightly builds] available for some Linux distributions.
Otherwise, the Rust compiler currently must be built from a [tarball].
See the wiki for [build instructions]. There is a [Windows installer]
for Rust 0.8, but it is not supported.

Since the Rust compiler is written in Rust, it must be built by
a precompiled "snapshot" version of itself (made in an earlier state
Expand Down Expand Up @@ -116,7 +117,10 @@ When complete, `make install` will place several programs into
API-documentation tool; and `rustpkg`, the Rust package manager.

[tarball]: http://static.rust-lang.org/dist/rust-0.8.tar.gz
[win-exe]: http://static.rust-lang.org/dist/rust-0.8-install.exe
[Windows installer]: http://static.rust-lang.org/dist/rust-0.8-install.exe
[build instructions]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
[nightly builds]: https://github.com/mozilla/rust/wiki/Doc-packages,-editors,-and-other-tools


## Compiling your first program

Expand Down