rust/src
Joshua Nelson c35ce3ff17 Don't generate bootstrap usage unless it's needed
Previously, `x.py` would unconditionally run `x.py build` to get the
help message. After https://github.com/rust-lang/rust/issues/76165,
when checking the CI stage was moved into `Config`, that would cause an
assertion failure (but only only in CI!):

```
thread 'main' panicked at 'assertion failed: `(left == right)`
  left: `1`,
 right: `2`', src/bootstrap/config.rs:619:49
```

This changes bootstrap to only generate a help message when it needs
to (when someone passes `--help`).
2020-09-16 13:31:20 -04:00
..
bootstrap Don't generate bootstrap usage unless it's needed 2020-09-16 13:31:20 -04:00
build_helper cleanup: Remove duplicate library names from Cargo.tomls 2020-08-30 22:57:54 +03:00
ci ci: gate macOS on GHA too 2020-09-15 21:56:07 +02:00
doc doc: platform-support.md: Move to tier 3 2020-09-15 08:13:01 -07:00
etc Implement HashSet in terms of hashbrown::HashSet 2020-09-08 17:24:23 -07:00
librustdoc Rollup merge of #76641 - nox:pointee-random-stuff, r=eddyb 2020-09-16 08:25:00 +02:00
llvm-project@833dd1e3d4 Update llvm-project to include PR 73 2020-09-05 12:49:17 -07:00
test Rollup merge of #76369 - ayushmishra2005:move_various_str_tests_library, r=jyn514 2020-09-16 08:24:54 +02:00
tools Update cargo 2020-09-15 14:52:18 -07:00
README.md Update README.md 2020-08-30 13:40:11 -05:00
stage0.txt bump version to 1.48 2020-08-26 10:16:59 +02:00

This directory contains the source code of the rust project, including:

  • The test suite
  • The bootstrapping build system
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc dev guide.