rust/src
bors f64503eb55 Auto merge of #85554 - 12101111:fix-dedup-native-libs, r=petrochenkov
native lib: defer the duplicate check after relevant_lib check.

https://github.com/rust-lang/rust/pull/84794 break code using conditional-compilation with `#[link]` attributes.

```rust
#[cfg(target_env = "musl")]
cfg_if::cfg_if! {
    if #[cfg(any(target_feature = "crt-static", feature = "llvm-libunwind"))] {
        #[link(name = "unwind", kind = "static", modifiers = "-bundle")]
        extern "C" {}
    } else {
        #[link(name = "unwind", cfg(feature = "system-llvm-libunwind"))]
        #[link(name = "gcc_s", cfg(not(feature = "system-llvm-libunwind")))]
        extern "C" {}
    }
}

```
2021-05-23 19:42:19 +00:00
..
bootstrap Auto merge of #81601 - jyn514:llvm-on-demand, r=Mark-Simulacrum 2021-05-23 00:40:48 +00:00
build_helper Add track_caller to builder_helper::output 2021-05-19 22:55:59 -04:00
ci Auto merge of #85335 - GuillaumeGomez:rollup-0tvc14g, r=GuillaumeGomez 2021-05-15 17:37:18 +00:00
doc Rollup merge of #83366 - jyn514:stabilize-key-value-attrs, r=petrochenkov 2021-05-18 22:35:54 -04:00
etc Fix HashMap/HashSet LLDB pretty-printer after hashbrown 0.11.0 2021-04-06 12:44:17 +03:00
librustdoc Auto merge of #85602 - GuillaumeGomez:donthide-inherent-impls, r=jsha 2021-05-23 17:13:51 +00:00
llvm-project@5f67a57157 Update LLVM submodule 2021-05-12 21:15:39 +02:00
rustdoc-json-types rustdoc-json: Rename Import.span to Import.source 2021-03-21 19:47:12 -07:00
test Auto merge of #85554 - 12101111:fix-dedup-native-libs, r=petrochenkov 2021-05-23 19:42:19 +00:00
tools Auto merge of #85505 - flip1995:clippyup, r=Manishearth 2021-05-22 01:59:57 +00:00
README.md
stage0.txt Bump bootstrap compiler 2021-04-06 18:24:09 -07:00
version bump version to 1.54.0 2021-04-30 15:24:00 +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.