Brian Anderson | a08c5aa | 2012-07-10 05:18:37 | [diff] [blame] | 1 | # The Rust Programming Language |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 2 | |
Brian Anderson | c92d2ed | 2012-07-10 05:13:48 | [diff] [blame] | 3 | This is a compiler for Rust, including standard libraries, tools and |
Brian Anderson | aaabdbf | 2015-02-16 05:08:32 | [diff] [blame] | 4 | documentation. Rust is a systems programming language that is fast, |
| 5 | memory safe and multithreaded, but does not employ a garbage collector |
| 6 | or otherwise impose significant runtime overhead. |
Brian Anderson | c92d2ed | 2012-07-10 05:13:48 | [diff] [blame] | 7 | |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 8 | ## Quick Start |
Brian Anderson | c92d2ed | 2012-07-10 05:13:48 | [diff] [blame] | 9 | |
Brian Anderson | 73cc4ed | 2015-02-16 05:20:27 | [diff] [blame] | 10 | Read ["Installing Rust"] from [The Book]. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 11 | |
Brian Anderson | 73cc4ed | 2015-02-16 05:20:27 | [diff] [blame] | 12 | ["Installing Rust"]: http://doc.rust-lang.org/book/installing-rust.html |
| 13 | [The Book]: http://doc.rust-lang.org/book/index.html |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 14 | |
Alex Crichton | 46867cc | 2014-04-02 23:59:39 | [diff] [blame] | 15 | ## Building from Source |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 16 | |
Adrien Tétar | a30d61b | 2014-01-11 14:19:38 | [diff] [blame] | 17 | 1. Make sure you have installed the dependencies: |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 18 | |
| 19 | * `g++` 4.7 or `clang++` 3.x |
| 20 | * `python` 2.6 or later (but not 3.x) |
| 21 | * GNU `make` 3.81 or later |
| 22 | * `curl` |
| 23 | * `git` |
Steve Klabnik | f645cad | 2015-02-13 17:26:44 | [diff] [blame] | 24 | |
Brian Anderson | 7430e58 | 2015-02-18 21:46:20 | [diff] [blame] | 25 | 2. Clone the [source] with `git`: |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 26 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 27 | ```sh |
| 28 | $ git clone https://github.com/rust-lang/rust.git |
| 29 | $ cd rust |
| 30 | ``` |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 31 | |
Brian Anderson | 4acc483 | 2015-02-16 04:20:25 | [diff] [blame] | 32 | [source]: https://github.com/rust-lang/rust |
| 33 | |
| 34 | 3. Build and install: |
Adrien Tétar | a30d61b | 2014-01-11 14:19:38 | [diff] [blame] | 35 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 36 | ```sh |
| 37 | $ ./configure |
| 38 | $ make && make install |
| 39 | ``` |
Adrien Tétar | a30d61b | 2014-01-11 14:19:38 | [diff] [blame] | 40 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 41 | > ***Note:*** You may need to use `sudo make install` if you do not |
| 42 | > normally have permission to modify the destination directory. The |
| 43 | > install locations can be adjusted by passing a `--prefix` argument |
| 44 | > to `configure`. Various other options are also supported – pass |
| 45 | > `--help` for more information on them. |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 46 | |
| 47 | When complete, `make install` will place several programs into |
Corey Richardson | 25fe2ca | 2014-02-02 07:56:55 | [diff] [blame] | 48 | `/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the |
Brian Anderson | 21ed20b | 2015-02-16 04:41:16 | [diff] [blame] | 49 | API-documentation tool. This install does not include [Cargo], |
| 50 | Rust's package manager, which you may also want to build. |
| 51 | |
| 52 | [Cargo]: https://github.com/rust-lang/cargo |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 53 | |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 54 | ### Building on Windows |
| 55 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 56 | [MSYS2](http://msys2.github.io/) can be used to easily build Rust on Windows: |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 57 | |
| 58 | 1. Grab the latest MSYS2 installer and go through the installer. |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 59 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 60 | 2. From the MSYS2 terminal, install the `mingw64` toolchain and other required |
| 61 | tools. |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 62 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 63 | ```sh |
| 64 | # Choose one based on platform: |
| 65 | $ pacman -S mingw-w64-i686-toolchain |
| 66 | $ pacman -S mingw-w64-x86_64-toolchain |
Tamir Duberstein | f576579 | 2015-03-14 23:09:26 | [diff] [blame] | 67 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 68 | $ pacman -S base-devel |
| 69 | ``` |
Steve Klabnik | 5992325 | 2015-01-12 21:00:03 | [diff] [blame] | 70 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 71 | 3. Run `mingw32_shell.bat` or `mingw64_shell.bat` from wherever you installed |
| 72 | MYSY2 (i.e. `C:\msys`), depending on whether you want 32-bit or 64-bit Rust. |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 73 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 74 | 4. Navigate to Rust's source code, configure and build it: |
| 75 | |
| 76 | ```sh |
| 77 | $ ./configure |
| 78 | $ make && make install |
| 79 | ``` |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 80 | |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 81 | ## Notes |
| 82 | |
| 83 | Since the Rust compiler is written in Rust, it must be built by a |
| 84 | precompiled "snapshot" version of itself (made in an earlier state of |
| 85 | development). As such, source builds require a connection to the Internet, to |
| 86 | fetch snapshots, and an OS that can execute the available snapshot binaries. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 87 | |
Brian Anderson | 4c833af | 2012-10-11 00:56:38 | [diff] [blame] | 88 | Snapshot binaries are currently built and tested on several platforms: |
Brian Anderson | 3403e41 | 2012-07-10 05:20:32 | [diff] [blame] | 89 | |
Taylor Hutchison | 4474eab | 2014-10-10 04:41:30 | [diff] [blame] | 90 | * Windows (7, 8, Server 2008 R2), x86 and x86-64 (64-bit support added in Rust 0.12.0) |
Daniel Micay | b5334b3 | 2014-01-31 14:58:00 | [diff] [blame] | 91 | * Linux (2.6.18 or later, various distributions), x86 and x86-64 |
Daniel Micay | d244512 | 2014-01-31 14:50:44 | [diff] [blame] | 92 | * OSX 10.7 (Lion) or greater, x86 and x86-64 |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 93 | |
Adrien Tétar | a30d61b | 2014-01-11 14:19:38 | [diff] [blame] | 94 | You may find that other platforms work, but these are our officially |
Brian Anderson | 4c833af | 2012-10-11 00:56:38 | [diff] [blame] | 95 | supported build environments that are most likely to work. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 96 | |
Adrien Tétar | a30d61b | 2014-01-11 14:19:38 | [diff] [blame] | 97 | Rust currently needs about 1.5 GiB of RAM to build without swapping; if it hits |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 98 | swap, it will take a very long time to build. |
Brian Anderson | 4c833af | 2012-10-11 00:56:38 | [diff] [blame] | 99 | |
Brian Anderson | c273571 | 2015-02-18 21:48:46 | [diff] [blame] | 100 | There is more advice about hacking on Rust in [CONTRIBUTING.md]. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 101 | |
Brian Anderson | c273571 | 2015-02-18 21:48:46 | [diff] [blame] | 102 | [CONTRIBUTING.md]: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 103 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 104 | ## Getting Help |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 105 | |
| 106 | The Rust community congregates in a few places: |
| 107 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 108 | * [Stack Overflow] - Direct questions about using the language. |
| 109 | * [users.rust-lang.org] - General discussion and broader questions. |
Brian Anderson | 5716ede | 2015-01-29 23:49:00 | [diff] [blame] | 110 | * [/r/rust] - News and general discussion. |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 111 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 112 | [Stack Overflow]: http://stackoverflow.com/questions/tagged/rust |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 113 | [/r/rust]: http://reddit.com/r/rust |
Brian Anderson | 5716ede | 2015-01-29 23:49:00 | [diff] [blame] | 114 | [users.rust-lang.org]: http://users.rust-lang.org/ |
Steve Klabnik | f645cad | 2015-02-13 17:26:44 | [diff] [blame] | 115 | |
| 116 | ## Contributing |
| 117 | |
Daniel Lobato García | 13d5e57 | 2015-03-08 21:37:23 | [diff] [blame] | 118 | To contribute to Rust, please see [CONTRIBUTING](CONTRIBUTING.md). |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 119 | |
Brian Anderson | 4618955 | 2015-02-16 04:58:06 | [diff] [blame] | 120 | Rust has an [IRC] culture and most real-time collaboration happens in a |
| 121 | variety of channels on Mozilla's IRC network, irc.mozilla.org. The |
| 122 | most popular channel is [#rust], a venue for general discussion about |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 123 | Rust, and a good place to ask for help. |
Brian Anderson | 4618955 | 2015-02-16 04:58:06 | [diff] [blame] | 124 | |
| 125 | [IRC]: https://en.wikipedia.org/wiki/Internet_Relay_Chat |
Brian Anderson | 7430e58 | 2015-02-18 21:46:20 | [diff] [blame] | 126 | [#rust]: irc://irc.mozilla.org/rust |
Brian Anderson | 4618955 | 2015-02-16 04:58:06 | [diff] [blame] | 127 | |
Brian Anderson | c92d2ed | 2012-07-10 05:13:48 | [diff] [blame] | 128 | ## License |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 129 | |
Brian Anderson | 11a9918 | 2012-12-28 21:40:33 | [diff] [blame] | 130 | Rust is primarily distributed under the terms of both the MIT license |
| 131 | and the Apache License (Version 2.0), with portions covered by various |
| 132 | BSD-like licenses. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 133 | |
Daniel Lobato García | 13d5e57 | 2015-03-08 21:37:23 | [diff] [blame] | 134 | See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and [COPYRIGHT](COPYRIGHT) for details. |