-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Miscellaneous README changes #22662
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
Merged
Merged
Miscellaneous README changes #22662
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,28 +15,34 @@ Read ["Installing Rust"] from [The Book]. | |
## Building from Source | ||
|
||
1. Make sure you have installed the dependencies: | ||
* `g++` 4.7 or `clang++` 3.x | ||
* `python` 2.6 or later (but not 3.x) | ||
* GNU `make` 3.81 or later | ||
* `curl` | ||
* `git` | ||
|
||
* `g++` 4.7 or `clang++` 3.x | ||
* `python` 2.6 or later (but not 3.x) | ||
* GNU `make` 3.81 or later | ||
* `curl` | ||
* `git` | ||
|
||
2. Clone the [source] with `git`: | ||
|
||
$ git clone https://github.com/rust-lang/rust.git | ||
$ cd rust | ||
```sh | ||
$ git clone https://github.com/rust-lang/rust.git | ||
$ cd rust | ||
``` | ||
|
||
[source]: https://github.com/rust-lang/rust | ||
|
||
3. Build and install: | ||
|
||
$ ./configure | ||
$ make && make install | ||
```sh | ||
$ ./configure | ||
$ make && make install | ||
``` | ||
|
||
> ***Note:*** You may need to use `sudo make install` if you do not normally have | ||
> permission to modify the destination directory. The install locations can | ||
> be adjusted by passing a `--prefix` argument to `configure`. Various other | ||
> options are also supported, pass `--help` for more information on them. | ||
> ***Note:*** You may need to use `sudo make install` if you do not | ||
> normally have permission to modify the destination directory. The | ||
> install locations can be adjusted by passing a `--prefix` argument | ||
> to `configure`. Various other options are also supported – pass | ||
> `--help` for more information on them. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here, might as well outdent this too |
||
|
||
When complete, `make install` will place several programs into | ||
`/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the | ||
|
@@ -47,27 +53,30 @@ Read ["Installing Rust"] from [The Book]. | |
|
||
### Building on Windows | ||
|
||
To easily build on windows we can use [MSYS2](http://msys2.github.io/): | ||
[MSYS2](http://msys2.github.io/) can be used to easily build Rust on Windows: | ||
|
||
1. Grab the latest MSYS2 installer and go through the installer. | ||
2. Now from the MSYS2 terminal we want to install the mingw64 toolchain and the other | ||
tools we need. | ||
|
||
```bash | ||
# choose one based on platform | ||
$ pacman -S mingw-w64-i686-toolchain | ||
$ pacman -S mingw-w64-x86_64-toolchain | ||
2. From the MSYS2 terminal, install the `mingw64` toolchain and other required | ||
tools. | ||
|
||
```sh | ||
# Choose one based on platform: | ||
$ pacman -S mingw-w64-i686-toolchain | ||
$ pacman -S mingw-w64-x86_64-toolchain | ||
|
||
$ pacman -S base-devel | ||
``` | ||
|
||
$ pacman -S base-devel | ||
``` | ||
3. Run `mingw32_shell.bat` or `mingw64_shell.bat` from wherever you installed | ||
MYSY2 (i.e. `C:\msys`), depending on whether you want 32-bit or 64-bit Rust. | ||
|
||
3. With that now start `mingw32_shell.bat` or `mingw64_shell.bat` | ||
from where you installed MSYS2 (i.e. `C:\msys`). Which one you | ||
choose depends on if you want 32 or 64 bit Rust. | ||
4. From there just navigate to where you have Rust's source code, configure and build it: | ||
4. Navigate to Rust's source code, configure and build it: | ||
|
||
$ ./configure | ||
$ make && make install | ||
```sh | ||
$ ./configure | ||
$ make && make install | ||
``` | ||
|
||
## Notes | ||
|
||
|
@@ -92,15 +101,15 @@ There is more advice about hacking on Rust in [CONTRIBUTING.md]. | |
|
||
[CONTRIBUTING.md]: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md | ||
|
||
## Getting help | ||
## Getting Help | ||
|
||
The Rust community congregates in a few places: | ||
|
||
* [StackOverflow] - Direct questions about using the language here. | ||
* [users.rust-lang.org] - General discussion, broader questions. | ||
* [Stack Overflow] - Direct questions about using the language. | ||
* [users.rust-lang.org] - General discussion and broader questions. | ||
* [/r/rust] - News and general discussion. | ||
|
||
[StackOverflow]: http://stackoverflow.com/questions/tagged/rust | ||
[Stack Overflow]: http://stackoverflow.com/questions/tagged/rust | ||
[/r/rust]: http://reddit.com/r/rust | ||
[users.rust-lang.org]: http://users.rust-lang.org/ | ||
|
||
|
@@ -111,7 +120,7 @@ To contribute to Rust, please see [CONTRIBUTING.md](CONTRIBUTING.md). | |
Rust has an [IRC] culture and most real-time collaboration happens in a | ||
variety of channels on Mozilla's IRC network, irc.mozilla.org. The | ||
most popular channel is [#rust], a venue for general discussion about | ||
Rust, and a good place to ask for help, | ||
Rust, and a good place to ask for help. | ||
|
||
[IRC]: https://en.wikipedia.org/wiki/Internet_Relay_Chat | ||
[#rust]: irc://irc.mozilla.org/rust | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if we're using triple graves, then we shouldn't need to indent