]> git.proxmox.com Git - rustc.git/blame - README.md
Merge tag 'upstream/1.18.0+dfsg1' into debian/experimental
[rustc.git] / README.md
CommitLineData
223e47cc
LB
1# The Rust Programming Language
2
3157f602
XL
3This is the main source code repository for [Rust]. It contains the compiler,
4standard library, and documentation.
62682a34 5
92a42be0 6[Rust]: https://www.rust-lang.org
223e47cc 7
1a4d82fc 8## Quick Start
223e47cc 9
85aaf69f 10Read ["Installing Rust"] from [The Book].
223e47cc 11
7453a54e 12["Installing Rust"]: https://doc.rust-lang.org/book/getting-started.html#installing-rust
e9174d1e 13[The Book]: https://doc.rust-lang.org/book/index.html
223e47cc 14
1a4d82fc 15## Building from Source
223e47cc 16
1a4d82fc 171. Make sure you have installed the dependencies:
c34b1796 18
cc61c64b 19 * `g++` 4.7 or later or `clang++` 3.x or later
7453a54e 20 * `python` 2.7 (but not 3.x)
c34b1796 21 * GNU `make` 3.81 or later
9e0c209e 22 * `cmake` 3.4.3 or later
c34b1796
AL
23 * `curl`
24 * `git`
1a4d82fc 25
85aaf69f 262. Clone the [source] with `git`:
1a4d82fc 27
c34b1796
AL
28 ```sh
29 $ git clone https://github.com/rust-lang/rust.git
30 $ cd rust
31 ```
1a4d82fc 32
85aaf69f
SL
33[source]: https://github.com/rust-lang/rust
34
353. Build and install:
223e47cc 36
c34b1796 37 ```sh
8bb4bdeb 38 $ ./x.py build && sudo ./x.py dist --install
c34b1796 39 ```
223e47cc 40
8bb4bdeb
XL
41 > ***Note:*** Install locations can be adjusted by copying the config file
42 > from `./src/bootstrap/config.toml.example` to `./config.toml`, and
43 > adjusting the `prefix` option under `[install]`. Various other options are
44 > also supported, and are documented in the config file.
223e47cc 45
8bb4bdeb 46 When complete, `sudo ./x.py dist --install` will place several programs into
1a4d82fc 47 `/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the
85aaf69f
SL
48 API-documentation tool. This install does not include [Cargo],
49 Rust's package manager, which you may also want to build.
50
51[Cargo]: https://github.com/rust-lang/cargo
223e47cc 52
1a4d82fc 53### Building on Windows
223e47cc 54
9cc50fc6
SL
55There are two prominent ABIs in use on Windows: the native (MSVC) ABI used by
56Visual Studio, and the GNU ABI used by the GCC toolchain. Which version of Rust
57you need depends largely on what C/C++ libraries you want to interoperate with:
58for interop with software produced by Visual Studio use the MSVC build of Rust;
59for interop with GNU software built using the MinGW/MSYS2 toolchain use the GNU
60build.
61
9cc50fc6
SL
62#### MinGW
63
3157f602 64[MSYS2][msys2] can be used to easily build Rust on Windows:
223e47cc 65
5bcae85e 66[msys2]: https://msys2.github.io/
223e47cc 67
3157f602
XL
681. Grab the latest [MSYS2 installer][msys2] and go through the installer.
69
702. Run `mingw32_shell.bat` or `mingw64_shell.bat` from wherever you installed
71 MSYS2 (i.e. `C:\msys64`), depending on whether you want 32-bit or 64-bit
72 Rust. (As of the latest version of MSYS2 you have to run `msys2_shell.cmd
73 -mingw32` or `msys2_shell.cmd -mingw64` from the command line instead)
74
753. From this terminal, install the required tools:
c34b1796
AL
76
77 ```sh
e9174d1e
SL
78 # Update package mirrors (may be needed if you have a fresh install of MSYS2)
79 $ pacman -Sy pacman-mirrors
b039eaaf 80
3157f602
XL
81 # Install build tools needed for Rust. If you're building a 32-bit compiler,
82 # then replace "x86_64" below with "i686". If you've already got git, python,
83 # or CMake installed and in PATH you can remove them from this list. Note
32a655c1
SL
84 # that it is important that you do **not** use the 'python2' and 'cmake'
85 # packages from the 'msys2' subsystem. The build has historically been known
86 # to fail with these packages.
3157f602
XL
87 $ pacman -S git \
88 make \
89 diffutils \
c30ab7b3 90 tar \
3157f602
XL
91 mingw-w64-x86_64-python2 \
92 mingw-w64-x86_64-cmake \
93 mingw-w64-x86_64-gcc
c34b1796 94 ```
223e47cc 95
8bb4bdeb 964. Navigate to Rust's source code (or clone it), then build it:
1a4d82fc 97
c34b1796 98 ```sh
8bb4bdeb 99 $ ./x.py build && ./x.py dist --install
c34b1796 100 ```
b039eaaf 101
9cc50fc6
SL
102#### MSVC
103
104MSVC builds of Rust additionally require an installation of Visual Studio 2013
105(or later) so `rustc` can use its linker. Make sure to check the “C++ tools”
5bcae85e 106option.
9cc50fc6 107
476ff2be
SL
108With these dependencies installed, you can build the compiler in a `cmd.exe`
109shell with:
9cc50fc6
SL
110
111```sh
476ff2be 112> python x.py build
9cc50fc6 113```
1a4d82fc 114
476ff2be
SL
115Currently building Rust only works with some known versions of Visual Studio. If
116you have a more recent version installed the build system doesn't understand
5bcae85e
SL
117then you may need to force rustbuild to use an older version. This can be done
118by manually calling the appropriate vcvars file before running the bootstrap.
119
120```
3157f602 121CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat"
c30ab7b3 122python x.py build
3157f602
XL
123```
124
8bb4bdeb
XL
125#### Specifying an ABI
126
127Each specific ABI can also be used from either environment (for example, using
128the GNU ABI in powershell) by using an explicit build triple. The available
129Windows build triples are:
130- GNU ABI (using GCC)
131 - `i686-pc-windows-gnu`
132 - `x86_64-pc-windows-gnu`
133- The MSVC ABI
134 - `i686-pc-windows-msvc`
135 - `x86_64-pc-windows-msvc`
136
137The build triple can be specified by either specifying `--build=ABI` when
138invoking `x.py` commands, or by copying the `config.toml` file (as described
139in Building From Source), and modifying the `build` option under the `[build]`
140section.
141
142### Configure and Make
143
144While it's not the recommended build system, this project also provides a
145configure script and makefile (the latter of which just invokes `x.py`).
146
147```sh
148$ ./configure
149$ make && sudo make install
150```
151
152When using the configure script, the generated `config.mk` file may override the
153`config.toml` file. To go back to the `config.toml` file, delete the generated
154`config.mk` file.
155
e9174d1e
SL
156## Building Documentation
157
158If you’d like to build the documentation, it’s almost the same:
159
160```sh
8bb4bdeb 161$ ./x.py doc
e9174d1e
SL
162```
163
cc61c64b
XL
164The generated documentation will appear under `doc` in the `build` directory for
165the ABI used. I.e., if the ABI was `x86_64-pc-windows-msvc`, the directory will be
166`build\x86_64-pc-windows-msvc\doc`.
e9174d1e 167
1a4d82fc
JJ
168## Notes
169
170Since the Rust compiler is written in Rust, it must be built by a
171precompiled "snapshot" version of itself (made in an earlier state of
172development). As such, source builds require a connection to the Internet, to
173fetch snapshots, and an OS that can execute the available snapshot binaries.
174
175Snapshot binaries are currently built and tested on several platforms:
223e47cc 176
9e0c209e 177| Platform / Architecture | x86 | x86_64 |
d9579d0f
AL
178|--------------------------------|-----|--------|
179| Windows (7, 8, Server 2008 R2) | ✓ | ✓ |
180| Linux (2.6.18 or later) | ✓ | ✓ |
181| OSX (10.7 Lion or later) | ✓ | ✓ |
1a4d82fc
JJ
182
183You may find that other platforms work, but these are our officially
184supported build environments that are most likely to work.
185
3157f602
XL
186Rust currently needs between 600MiB and 1.5GiB to build, depending on platform.
187If it hits swap, it will take a very long time to build.
1a4d82fc 188
85aaf69f 189There is more advice about hacking on Rust in [CONTRIBUTING.md].
1a4d82fc 190
85aaf69f 191[CONTRIBUTING.md]: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md
1a4d82fc 192
c34b1796 193## Getting Help
1a4d82fc
JJ
194
195The Rust community congregates in a few places:
196
c34b1796
AL
197* [Stack Overflow] - Direct questions about using the language.
198* [users.rust-lang.org] - General discussion and broader questions.
85aaf69f 199* [/r/rust] - News and general discussion.
1a4d82fc 200
cc61c64b
XL
201[Stack Overflow]: https://stackoverflow.com/questions/tagged/rust
202[/r/rust]: https://reddit.com/r/rust
e9174d1e 203[users.rust-lang.org]: https://users.rust-lang.org/
85aaf69f
SL
204
205## Contributing
206
c34b1796 207To contribute to Rust, please see [CONTRIBUTING](CONTRIBUTING.md).
85aaf69f
SL
208
209Rust has an [IRC] culture and most real-time collaboration happens in a
210variety of channels on Mozilla's IRC network, irc.mozilla.org. The
211most popular channel is [#rust], a venue for general discussion about
54a0048b 212Rust. And a good place to ask for help would be [#rust-beginners].
85aaf69f
SL
213
214[IRC]: https://en.wikipedia.org/wiki/Internet_Relay_Chat
215[#rust]: irc://irc.mozilla.org/rust
54a0048b 216[#rust-beginners]: irc://irc.mozilla.org/rust-beginners
223e47cc
LB
217
218## License
219
220Rust is primarily distributed under the terms of both the MIT license
221and the Apache License (Version 2.0), with portions covered by various
222BSD-like licenses.
223
3157f602
XL
224See [LICENSE-APACHE](LICENSE-APACHE), [LICENSE-MIT](LICENSE-MIT), and
225[COPYRIGHT](COPYRIGHT) for details.