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 | 7793829 | 2015-11-09 21:22:16 | [diff] [blame] | 3 | This is the main source code repository for [Rust]. It contains the compiler, standard library, |
| 4 | and documentation. |
Nick Hamann | 74f1818 | 2015-05-15 05:43:40 | [diff] [blame] | 5 | |
Brian Anderson | 7793829 | 2015-11-09 21:22:16 | [diff] [blame] | 6 | [Rust]: https://www.rust-lang.org |
Tshepang Lekhonkhobe | a8680de | 2015-06-18 21:48:51 | [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 | |
Andrew Barchuk | 1339ca9 | 2016-01-29 09:45:37 | [diff] [blame] | 12 | ["Installing Rust"]: https://doc.rust-lang.org/book/getting-started.html#installing-rust |
Eli Friedman | bbbfed2 | 2015-08-09 21:15:05 | [diff] [blame] | 13 | [The Book]: https://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 |
Robin Kruppe | 999051d | 2016-02-13 20:19:44 | [diff] [blame] | 20 | * `python` 2.7 (but not 3.x) |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 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 | |
Steve Klabnik | 011a23e | 2016-01-04 17:33:43 | [diff] [blame] | 56 | There are two prominent ABIs in use on Windows: the native (MSVC) ABI used by |
| 57 | Visual Studio, and the GNU ABI used by the GCC toolchain. Which version of Rust |
| 58 | you need depends largely on what C/C++ libraries you want to interoperate with: |
| 59 | for interop with software produced by Visual Studio use the MSVC build of Rust; |
| 60 | for interop with GNU software built using the MinGW/MSYS2 toolchain use the GNU |
| 61 | build. |
| 62 | |
| 63 | |
| 64 | #### MinGW |
| 65 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 66 | [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] | 67 | |
| 68 | 1. Grab the latest MSYS2 installer and go through the installer. |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 69 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 70 | 2. From the MSYS2 terminal, install the `mingw64` toolchain and other required |
| 71 | tools. |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 72 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 73 | ```sh |
Jake Shadle | 371c0ea | 2015-08-28 07:46:23 | [diff] [blame] | 74 | # Update package mirrors (may be needed if you have a fresh install of MSYS2) |
Jake Shadle | 7ab8ed8 | 2015-08-28 18:24:13 | [diff] [blame] | 75 | $ pacman -Sy pacman-mirrors |
Steve Klabnik | 011a23e | 2016-01-04 17:33:43 | [diff] [blame] | 76 | ``` |
Carlos Liam | 3967e1c | 2015-10-06 15:14:11 | [diff] [blame] | 77 | |
Steve Klabnik | 011a23e | 2016-01-04 17:33:43 | [diff] [blame] | 78 | Download [MinGW from |
| 79 | here](http://mingw-w64.org/doku.php/download/mingw-builds), and choose the |
Vadim Petrochenkov | 90474c7 | 2016-03-20 20:36:48 | [diff] [blame] | 80 | `version=4.9.x,threads=win32,exceptions=dwarf/seh` flavor when installing. Also, make sure to install to a path without spaces in it. After installing, |
Joshua Olson | 797e6fc | 2016-01-16 03:50:03 | [diff] [blame] | 81 | add its `bin` directory to your `PATH`. This is due to [#28260](https://github.com/rust-lang/rust/issues/28260), in the future, |
Steve Klabnik | 011a23e | 2016-01-04 17:33:43 | [diff] [blame] | 82 | installing from pacman should be just fine. |
Tamir Duberstein | f576579 | 2015-03-14 23:09:26 | [diff] [blame] | 83 | |
Steve Klabnik | 011a23e | 2016-01-04 17:33:43 | [diff] [blame] | 84 | ``` |
Bryce Van Dyk | 3ed49ef | 2015-10-20 08:02:19 | [diff] [blame] | 85 | # Make git available in MSYS2 (if not already available on path) |
| 86 | $ pacman -S git |
| 87 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 88 | $ pacman -S base-devel |
| 89 | ``` |
Steve Klabnik | 5992325 | 2015-01-12 21:00:03 | [diff] [blame] | 90 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 91 | 3. Run `mingw32_shell.bat` or `mingw64_shell.bat` from wherever you installed |
Kagami Sascha Rosylight | f24089c | 2015-07-03 08:16:13 | [diff] [blame] | 92 | MSYS2 (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] | 93 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 94 | 4. Navigate to Rust's source code, configure and build it: |
| 95 | |
| 96 | ```sh |
| 97 | $ ./configure |
| 98 | $ make && make install |
| 99 | ``` |
Bryce Van Dyk | ee24add | 2015-10-22 08:52:17 | [diff] [blame] | 100 | |
Steve Klabnik | 011a23e | 2016-01-04 17:33:43 | [diff] [blame] | 101 | #### MSVC |
| 102 | |
| 103 | MSVC builds of Rust additionally require an installation of Visual Studio 2013 |
| 104 | (or later) so `rustc` can use its linker. Make sure to check the “C++ tools” |
| 105 | option. In addition, `cmake` needs to be installed to build LLVM. |
| 106 | |
| 107 | With these dependencies installed, the build takes two steps: |
| 108 | |
| 109 | ```sh |
| 110 | $ ./configure |
| 111 | $ make && make install |
| 112 | ``` |
Luqman Aden | 8b83355 | 2014-06-27 00:07:44 | [diff] [blame] | 113 | |
Steve Klabnik | fd53ea2 | 2015-08-18 17:49:20 | [diff] [blame] | 114 | ## Building Documentation |
| 115 | |
| 116 | If you’d like to build the documentation, it’s almost the same: |
| 117 | |
| 118 | ```sh |
| 119 | ./configure |
| 120 | $ make docs |
| 121 | ``` |
| 122 | |
| 123 | Building the documentation requires building the compiler, so the above |
| 124 | details will apply. Once you have the compiler built, you can |
| 125 | |
| 126 | ```sh |
Bryce Van Dyk | 3ed49ef | 2015-10-20 08:02:19 | [diff] [blame] | 127 | $ make docs NO_REBUILD=1 |
Steve Klabnik | fd53ea2 | 2015-08-18 17:49:20 | [diff] [blame] | 128 | ``` |
| 129 | |
| 130 | To make sure you don’t re-build the compiler because you made a change |
| 131 | to some documentation. |
| 132 | |
| 133 | The generated documentation will appear in a top-level `doc` directory, |
| 134 | created by the `make` rule. |
| 135 | |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 136 | ## Notes |
| 137 | |
| 138 | Since the Rust compiler is written in Rust, it must be built by a |
| 139 | precompiled "snapshot" version of itself (made in an earlier state of |
| 140 | development). As such, source builds require a connection to the Internet, to |
| 141 | fetch snapshots, and an OS that can execute the available snapshot binaries. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 142 | |
Brian Anderson | 4c833af | 2012-10-11 00:56:38 | [diff] [blame] | 143 | Snapshot binaries are currently built and tested on several platforms: |
Brian Anderson | 3403e41 | 2012-07-10 05:20:32 | [diff] [blame] | 144 | |
Richo Healey | 6f3701d | 2015-05-12 06:43:58 | [diff] [blame] | 145 | | Platform \ Architecture | x86 | x86_64 | |
| 146 | |--------------------------------|-----|--------| |
| 147 | | Windows (7, 8, Server 2008 R2) | ✓ | ✓ | |
| 148 | | Linux (2.6.18 or later) | ✓ | ✓ | |
| 149 | | OSX (10.7 Lion or later) | ✓ | ✓ | |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 150 | |
Adrien Tétar | a30d61b | 2014-01-11 14:19:38 | [diff] [blame] | 151 | You may find that other platforms work, but these are our officially |
Brian Anderson | 4c833af | 2012-10-11 00:56:38 | [diff] [blame] | 152 | supported build environments that are most likely to work. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 153 | |
petevine | 5294f20 | 2015-12-07 00:12:53 | [diff] [blame] | 154 | Rust currently needs between 600MiB and 1.5GiB to build, depending on platform. If it hits |
Jack Moffitt | 8d64fa3 | 2013-07-18 23:27:43 | [diff] [blame] | 155 | swap, it will take a very long time to build. |
Brian Anderson | 4c833af | 2012-10-11 00:56:38 | [diff] [blame] | 156 | |
Brian Anderson | c273571 | 2015-02-18 21:48:46 | [diff] [blame] | 157 | There is more advice about hacking on Rust in [CONTRIBUTING.md]. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 158 | |
Brian Anderson | c273571 | 2015-02-18 21:48:46 | [diff] [blame] | 159 | [CONTRIBUTING.md]: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 160 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 161 | ## Getting Help |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 162 | |
| 163 | The Rust community congregates in a few places: |
| 164 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 165 | * [Stack Overflow] - Direct questions about using the language. |
| 166 | * [users.rust-lang.org] - General discussion and broader questions. |
Brian Anderson | 5716ede | 2015-01-29 23:49:00 | [diff] [blame] | 167 | * [/r/rust] - News and general discussion. |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 168 | |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 169 | [Stack Overflow]: http://stackoverflow.com/questions/tagged/rust |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 170 | [/r/rust]: http://reddit.com/r/rust |
Eli Friedman | bbbfed2 | 2015-08-09 21:15:05 | [diff] [blame] | 171 | [users.rust-lang.org]: https://users.rust-lang.org/ |
Steve Klabnik | f645cad | 2015-02-13 17:26:44 | [diff] [blame] | 172 | |
| 173 | ## Contributing |
| 174 | |
Daniel Lobato García | 13d5e57 | 2015-03-08 21:37:23 | [diff] [blame] | 175 | To contribute to Rust, please see [CONTRIBUTING](CONTRIBUTING.md). |
Brian Anderson | cd1fabe | 2014-08-22 18:04:35 | [diff] [blame] | 176 | |
Brian Anderson | 4618955 | 2015-02-16 04:58:06 | [diff] [blame] | 177 | Rust has an [IRC] culture and most real-time collaboration happens in a |
| 178 | variety of channels on Mozilla's IRC network, irc.mozilla.org. The |
| 179 | most popular channel is [#rust], a venue for general discussion about |
Kevin Yap | 24fa6be | 2015-02-21 22:46:06 | [diff] [blame] | 180 | Rust, and a good place to ask for help. |
Brian Anderson | 4618955 | 2015-02-16 04:58:06 | [diff] [blame] | 181 | |
| 182 | [IRC]: https://en.wikipedia.org/wiki/Internet_Relay_Chat |
Brian Anderson | 7430e58 | 2015-02-18 21:46:20 | [diff] [blame] | 183 | [#rust]: irc://irc.mozilla.org/rust |
Brian Anderson | 4618955 | 2015-02-16 04:58:06 | [diff] [blame] | 184 | |
Brian Anderson | c92d2ed | 2012-07-10 05:13:48 | [diff] [blame] | 185 | ## License |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 186 | |
Brian Anderson | 11a9918 | 2012-12-28 21:40:33 | [diff] [blame] | 187 | Rust is primarily distributed under the terms of both the MIT license |
| 188 | and the Apache License (Version 2.0), with portions covered by various |
| 189 | BSD-like licenses. |
Austin Seipp | 62c4d2c | 2012-01-23 21:53:12 | [diff] [blame] | 190 | |
Daniel Lobato García | 13d5e57 | 2015-03-08 21:37:23 | [diff] [blame] | 191 | See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and [COPYRIGHT](COPYRIGHT) for details. |