]> git.lizzy.rs Git - rust.git/blob - CONTRIBUTING.md
incr.comp.: Fix ICE caused by trying to hash INVALID_CRATE_NUM.
[rust.git] / CONTRIBUTING.md
1 # Contributing to Rust
2
3 Thank you for your interest in contributing to Rust! There are many ways to
4 contribute, and we appreciate all of them. This document is a bit long, so here's
5 links to the major sections:
6
7 * [Feature Requests](#feature-requests)
8 * [Bug Reports](#bug-reports)
9 * [The Build System](#the-build-system)
10 * [Pull Requests](#pull-requests)
11 * [Writing Documentation](#writing-documentation)
12 * [Issue Triage](#issue-triage)
13 * [Out-of-tree Contributions](#out-of-tree-contributions)
14 * [Helpful Links and Information](#helpful-links-and-information)
15
16 If you have questions, please make a post on [internals.rust-lang.org][internals] or
17 hop on [#rust-internals][pound-rust-internals].
18
19 As a reminder, all contributors are expected to follow our [Code of Conduct][coc].
20
21 [pound-rust-internals]: http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-internals
22 [internals]: https://internals.rust-lang.org
23 [coc]: https://www.rust-lang.org/conduct.html
24
25 ## Feature Requests
26
27 To request a change to the way that the Rust language works, please open an
28 issue in the [RFCs repository](https://github.com/rust-lang/rfcs/issues/new)
29 rather than this one. New features and other significant language changes
30 must go through the RFC process.
31
32 ## Bug Reports
33
34 While bugs are unfortunate, they're a reality in software. We can't fix what we
35 don't know about, so please report liberally. If you're not sure if something
36 is a bug or not, feel free to file a bug anyway.
37
38 **If you believe reporting your bug publicly represents a security risk to Rust users,
39 please follow our [instructions for reporting security vulnerabilities](https://www.rust-lang.org/security.html)**.
40
41 If you have the chance, before reporting a bug, please [search existing
42 issues](https://github.com/rust-lang/rust/search?q=&type=Issues&utf8=%E2%9C%93),
43 as it's possible that someone else has already reported your error. This doesn't
44 always work, and sometimes it's hard to know what to search for, so consider this
45 extra credit. We won't mind if you accidentally file a duplicate report.
46
47 Opening an issue is as easy as following [this
48 link](https://github.com/rust-lang/rust/issues/new) and filling out the fields.
49 Here's a template that you can use to file a bug, though it's not necessary to
50 use it exactly:
51
52     <short summary of the bug>
53
54     I tried this code:
55
56     <code sample that causes the bug>
57
58     I expected to see this happen: <explanation>
59
60     Instead, this happened: <explanation>
61
62     ## Meta
63
64     `rustc --version --verbose`:
65
66     Backtrace:
67
68 All three components are important: what you did, what you expected, what
69 happened instead. Please include the output of `rustc --version --verbose`,
70 which includes important information about what platform you're on, what
71 version of Rust you're using, etc.
72
73 Sometimes, a backtrace is helpful, and so including that is nice. To get
74 a backtrace, set the `RUST_BACKTRACE` environment variable to a value
75 other than `0`. The easiest way
76 to do this is to invoke `rustc` like this:
77
78 ```bash
79 $ RUST_BACKTRACE=1 rustc ...
80 ```
81
82 ## The Build System
83
84 Rust's build system allows you to bootstrap the compiler, run tests &
85 benchmarks, generate documentation, install a fresh build of Rust, and more.
86 It's your best friend when working on Rust, allowing you to compile & test
87 your contributions before submission.
88
89 The build system lives in [the `src/bootstrap` directory][bootstrap] in the
90 project root. Our build system is itself written in Rust and is based on Cargo
91 to actually build all the compiler's crates. If you have questions on the build
92 system internals, try asking in [`#rust-internals`][pound-rust-internals].
93
94 [bootstrap]: https://github.com/rust-lang/rust/tree/master/src/bootstrap/
95
96 ### Configuration
97
98 Before you can start building the compiler you need to configure the build for
99 your system. In most cases, that will just mean using the defaults provided
100 for Rust.
101
102 To change configuration, you must copy the file `config.toml.example`
103 to `config.toml` in the directory from which you will be running the build, and
104 change the settings provided.
105
106 There are large number of options provided in this config file that will alter the
107 configuration used in the build process. Some options to note:
108
109 #### `[llvm]`:
110 - `ccache = true` - Use ccache when building llvm
111
112 #### `[build]`:
113 - `compiler-docs = true` - Build compiler documentation
114
115 #### `[rust]`:
116 - `debuginfo = true` - Build a compiler with debuginfo
117 - `optimize = false` - Disable optimizations to speed up compilation of stage1 rust
118
119 For more options, the `config.toml` file contains commented out defaults, with
120 descriptions of what each option will do.
121
122 Note: Previously the `./configure` script was used to configure this
123 project. It can still be used, but it's recommended to use a `config.toml`
124 file. If you still have a `config.mk` file in your directory - from
125 `./configure` - you may need to delete it for `config.toml` to work.
126
127 ### Building
128
129 The build system uses the `x.py` script to control the build process. This script
130 is used to build, test, and document various parts of the compiler. You can
131 execute it as:
132
133 ```sh
134 python x.py build
135 ```
136
137 On some systems you can also use the shorter version:
138
139 ```sh
140 ./x.py build
141 ```
142
143 To learn more about the driver and top-level targets, you can execute:
144
145 ```sh
146 python x.py --help
147 ```
148
149 The general format for the driver script is:
150
151 ```sh
152 python x.py <command> [<directory>]
153 ```
154
155 Some example commands are `build`, `test`, and `doc`. These will build, test,
156 and document the specified directory. The second argument, `<directory>`, is
157 optional and defaults to working over the entire compiler. If specified,
158 however, only that specific directory will be built. For example:
159
160 ```sh
161 # build the entire compiler
162 python x.py build
163
164 # build all documentation
165 python x.py doc
166
167 # run all test suites
168 python x.py test
169
170 # build only the standard library
171 python x.py build src/libstd
172
173 # test only one particular test suite
174 python x.py test src/test/rustdoc
175
176 # build only the stage0 libcore library
177 python x.py build src/libcore --stage 0
178 ```
179
180 You can explore the build system through the various `--help` pages for each
181 subcommand. For example to learn more about a command you can run:
182
183 ```
184 python x.py build --help
185 ```
186
187 To learn about all possible rules you can execute, run:
188
189 ```
190 python x.py build --help --verbose
191 ```
192
193 Note: Previously `./configure` and `make` were used to build this project.
194 They are still available, but `x.py` is the recommended build system.
195
196 ### Useful commands
197
198 Some common invocations of `x.py` are:
199
200 - `x.py build --help` - show the help message and explain the subcommand
201 - `x.py build src/libtest --stage 1` - build up to (and including) the first
202   stage. For most cases we don't need to build the stage2 compiler, so we can
203   save time by not building it. The stage1 compiler is a fully functioning
204   compiler and (probably) will be enough to determine if your change works as
205   expected.
206 - `x.py build src/rustc --stage 1` - This will build just rustc, without libstd.
207   This is the fastest way to recompile after you changed only rustc source code.
208   Note however that the resulting rustc binary won't have a stdlib to link
209   against by default. You can build libstd once with `x.py build src/libstd`,
210   but it is only guaranteed to work if recompiled, so if there are any issues
211   recompile it.
212 - `x.py test` - build the full compiler & run all tests (takes a while). This
213   is what gets run by the continuous integration system against your pull
214   request. You should run this before submitting to make sure your tests pass
215   & everything builds in the correct manner.
216 - `x.py test src/libstd --stage 1` - test the standard library without
217   recompiling stage 2.
218 - `x.py test src/test/run-pass --test-args TESTNAME` - Run a matching set of
219   tests.
220   - `TESTNAME` should be a substring of the tests to match against e.g. it could
221     be the fully qualified test name, or just a part of it.
222     `TESTNAME=collections::hash::map::test_map::test_capacity_not_less_than_len`
223     or `TESTNAME=test_capacity_not_less_than_len`.
224 - `x.py test src/test/run-pass --stage 1 --test-args <substring-of-test-name>` -
225   Run a single rpass test with the stage1 compiler (this will be quicker than
226   running the command above as we only build the stage1 compiler, not the entire
227   thing).  You can also leave off the directory argument to run all stage1 test
228   types.
229 - `x.py test src/libcore --stage 1` - Run stage1 tests in `libcore`.
230 - `x.py test src/tools/tidy` - Check that the source code is in compliance with
231   Rust's style guidelines. There is no official document describing Rust's full
232   guidelines as of yet, but basic rules like 4 spaces for indentation and no
233   more than 99 characters in a single line should be kept in mind when writing
234   code.
235
236 ### Using your local build
237
238 If you use Rustup to manage your rust install, it has a feature called ["custom
239 toolchains"][toolchain-link] that you can use to access your newly-built compiler
240 without having to install it to your system or user PATH. If you've run `python
241 x.py build`, then you can add your custom rustc to a new toolchain like this:
242
243 [toolchain-link]: https://github.com/rust-lang-nursery/rustup.rs#working-with-custom-toolchains-and-local-builds
244
245 ```
246 rustup toolchain link <name> build/<host-triple>/stage2
247 ```
248
249 Where `<host-triple>` is the build triple for the host (the triple of your
250 computer, by default), and `<name>` is the name for your custom toolchain. (If you
251 added `--stage 1` to your build command, the compiler will be in the `stage1`
252 folder instead.) You'll only need to do this once - it will automatically point
253 to the latest build you've done.
254
255 Once this is set up, you can use your custom toolchain just like any other. For
256 example, if you've named your toolchain `local`, running `cargo +local build` will
257 compile a project with your custom rustc, setting `rustup override set local` will
258 override the toolchain for your current directory, and `cargo +local doc` will use
259 your custom rustc and rustdoc to generate docs. (If you do this with a `--stage 1`
260 build, you'll need to build rustdoc specially, since it's not normally built in
261 stage 1. `python x.py build --stage 1 src/libstd src/tools/rustdoc` will build
262 rustdoc and libstd, which will allow rustdoc to be run with that toolchain.)
263
264 ## Pull Requests
265
266 Pull requests are the primary mechanism we use to change Rust. GitHub itself
267 has some [great documentation][pull-requests] on using the Pull Request feature.
268 We use the "fork and pull" model [described here][development-models], where
269 contributors push changes to their personal fork and create pull requests to
270 bring those changes into the source repository.
271
272 [pull-requests]: https://help.github.com/articles/about-pull-requests/
273 [development-models]: https://help.github.com/articles/about-collaborative-development-models/
274
275 Please make pull requests against the `master` branch.
276
277 Compiling all of `./x.py test` can take a while. When testing your pull request,
278 consider using one of the more specialized `./x.py` targets to cut down on the
279 amount of time you have to wait. You need to have built the compiler at least
280 once before running these will work, but that’s only one full build rather than
281 one each time.
282
283     $ python x.py test --stage 1
284
285 is one such example, which builds just `rustc`, and then runs the tests. If
286 you’re adding something to the standard library, try
287
288     $ python x.py test src/libstd --stage 1
289
290 Please make sure your pull request is in compliance with Rust's style
291 guidelines by running
292
293     $ python x.py test src/tools/tidy
294
295 Make this check before every pull request (and every new commit in a pull
296 request) ; you can add [git hooks](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks)
297 before every push to make sure you never forget to make this check.
298
299 All pull requests are reviewed by another person. We have a bot,
300 @rust-highfive, that will automatically assign a random person to review your
301 request.
302
303 If you want to request that a specific person reviews your pull request,
304 you can add an `r?` to the message. For example, Steve usually reviews
305 documentation changes. So if you were to make a documentation change, add
306
307     r? @steveklabnik
308
309 to the end of the message, and @rust-highfive will assign @steveklabnik instead
310 of a random person. This is entirely optional.
311
312 After someone has reviewed your pull request, they will leave an annotation
313 on the pull request with an `r+`. It will look something like this:
314
315     @bors: r+ 38fe8d2
316
317 This tells @bors, our lovable integration bot, that your pull request has
318 been approved. The PR then enters the [merge queue][merge-queue], where @bors
319 will run all the tests on every platform we support. If it all works out,
320 @bors will merge your code into `master` and close the pull request.
321
322 [merge-queue]: https://buildbot2.rust-lang.org/homu/queue/rust
323
324 Speaking of tests, Rust has a comprehensive test suite. More information about
325 it can be found
326 [here](https://github.com/rust-lang/rust-wiki-backup/blob/master/Note-testsuite.md).
327
328 ### External Dependencies
329
330 Currently building Rust will also build the following external projects:
331
332 * [clippy](https://github.com/rust-lang-nursery/rust-clippy)
333
334 If your changes break one of these projects, you need to fix them by opening
335 a pull request against the broken project. When you have opened a pull request,
336 you can point the submodule at your pull request by calling
337
338 ```
339 git fetch origin pull/$id_of_your_pr/head:my_pr
340 git checkout my_pr
341 ```
342
343 within the submodule's directory. Don't forget to also add your changes with
344
345 ```
346 git add path/to/submodule
347 ```
348
349 outside the submodule.
350
351 It can also be more convenient during development to set `submodules = false`
352 in the `config.toml` to prevent `x.py` from resetting to the original branch.
353
354 ## Writing Documentation
355
356 Documentation improvements are very welcome. The source of `doc.rust-lang.org`
357 is located in `src/doc` in the tree, and standard API documentation is generated
358 from the source code itself.
359
360 Documentation pull requests function in the same way as other pull requests,
361 though you may see a slightly different form of `r+`:
362
363     @bors: r+ 38fe8d2 rollup
364
365 That additional `rollup` tells @bors that this change is eligible for a 'rollup'.
366 To save @bors some work, and to get small changes through more quickly, when
367 @bors attempts to merge a commit that's rollup-eligible, it will also merge
368 the other rollup-eligible patches too, and they'll get tested and merged at
369 the same time.
370
371 To find documentation-related issues, sort by the [T-doc label][tdoc].
372
373 [tdoc]: https://github.com/rust-lang/rust/issues?q=is%3Aopen%20is%3Aissue%20label%3AT-doc
374
375 You can find documentation style guidelines in [RFC 1574][rfc1574].
376
377 [rfc1574]: https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md#appendix-a-full-conventions-text
378
379 In many cases, you don't need a full `./x.py doc`. You can use `rustdoc` directly
380 to check small fixes. For example, `rustdoc src/doc/reference.md` will render
381 reference to `doc/reference.html`. The CSS might be messed up, but you can
382 verify that the HTML is right.
383
384 ## Issue Triage
385
386 Sometimes, an issue will stay open, even though the bug has been fixed. And
387 sometimes, the original bug may go stale because something has changed in the
388 meantime.
389
390 It can be helpful to go through older bug reports and make sure that they are
391 still valid. Load up an older issue, double check that it's still true, and
392 leave a comment letting us know if it is or is not. The [least recently
393 updated sort][lru] is good for finding issues like this.
394
395 Contributors with sufficient permissions on the Rust repo can help by adding
396 labels to triage issues:
397
398 * Yellow, **A**-prefixed labels state which **area** of the project an issue
399   relates to.
400
401 * Magenta, **B**-prefixed labels identify bugs which are **blockers**.
402
403 * Dark blue, **beta-** labels track changes which need to be backported into
404   the beta branches.
405
406 * Light purple, **C**-prefixed labels represent the **category** of an issue.
407
408 * Green, **E**-prefixed labels explain the level of **experience** necessary
409   to fix the issue.
410
411 * The dark blue **final-comment-period** label marks bugs that are using the
412   RFC signoff functionality of [rfcbot][rfcbot] and are currenty in the final
413   comment period.
414
415 * Red, **I**-prefixed labels indicate the **importance** of the issue. The
416   [I-nominated][inom] label indicates that an issue has been nominated for
417   prioritizing at the next triage meeting.
418
419 * The purple **metabug** label marks lists of bugs collected by other
420   categories.
421
422 * Purple gray, **O**-prefixed labels are the **operating system** or platform
423   that this issue is specific to.
424
425 * Orange, **P**-prefixed labels indicate a bug's **priority**. These labels
426   are only assigned during triage meetings, and replace the [I-nominated][inom]
427   label.
428
429 * The gray **proposed-final-comment-period** label marks bugs that are using
430   the RFC signoff functionality of [rfcbot][rfcbot] and are currently awaiting
431   signoff of all team members in order to enter the final comment period.
432
433 * Pink, **regression**-prefixed labels track regressions from stable to the
434   release channels.
435
436 * The light orange **relnotes** label marks issues that should be documented in
437   the release notes of the next release.
438
439 * Gray, **S**-prefixed labels are used for tracking the **status** of pull
440   requests.
441
442 * Blue, **T**-prefixed bugs denote which **team** the issue belongs to.
443
444 If you're looking for somewhere to start, check out the [E-easy][eeasy] tag.
445
446 [inom]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AI-nominated
447 [eeasy]: https://github.com/rust-lang/rust/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy
448 [lru]: https://github.com/rust-lang/rust/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-asc
449 [rfcbot]: https://github.com/dikaiosune/rust-dashboard/blob/master/RFCBOT.md
450
451 ## Out-of-tree Contributions
452
453 There are a number of other ways to contribute to Rust that don't deal with
454 this repository.
455
456 Answer questions in [#rust][pound-rust], or on [users.rust-lang.org][users],
457 or on [StackOverflow][so].
458
459 Participate in the [RFC process](https://github.com/rust-lang/rfcs).
460
461 Find a [requested community library][community-library], build it, and publish
462 it to [Crates.io](http://crates.io). Easier said than done, but very, very
463 valuable!
464
465 [pound-rust]: http://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust
466 [users]: https://users.rust-lang.org/
467 [so]: http://stackoverflow.com/questions/tagged/rust
468 [community-library]: https://github.com/rust-lang/rfcs/labels/A-community-library
469
470 ## Helpful Links and Information
471
472 For people new to Rust, and just starting to contribute, or even for
473 more seasoned developers, some useful places to look for information
474 are:
475
476 * The [Rust Internals forum][rif], a place to ask questions and
477   discuss Rust's internals
478 * The [generated documentation for rust's compiler][gdfrustc]
479 * The [rust reference][rr], even though it doesn't specifically talk about Rust's internals, it's a great resource nonetheless
480 * Although out of date, [Tom Lee's great blog article][tlgba] is very helpful
481 * [rustaceans.org][ro] is helpful, but mostly dedicated to IRC
482 * The [Rust Compiler Testing Docs][rctd]
483 * For @bors, [this cheat sheet][cheatsheet] is helpful (Remember to replace `@homu` with `@bors` in the commands that you use.)
484 * **Google!** ([search only in Rust Documentation][gsearchdocs] to find types, traits, etc. quickly)
485 * Don't be afraid to ask! The Rust community is friendly and helpful.
486
487 [gdfrustc]: http://manishearth.github.io/rust-internals-docs/rustc/
488 [gsearchdocs]: https://www.google.com/search?q=site:doc.rust-lang.org+your+query+here
489 [rif]: http://internals.rust-lang.org
490 [rr]: https://doc.rust-lang.org/book/README.html
491 [tlgba]: http://tomlee.co/2014/04/a-more-detailed-tour-of-the-rust-compiler/
492 [ro]: http://www.rustaceans.org/
493 [rctd]: ./src/test/COMPILER_TESTS.md
494 [cheatsheet]: https://buildbot2.rust-lang.org/homu/