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