diff options
| author | Matthias Krüger <476013+matthiaskrgr@users.noreply.github.com> | 2025-07-13 15:16:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-13 15:16:00 +0200 |
| commit | b4b00c7d103f17a47537524a4e39b6cdaa41f144 (patch) | |
| tree | 7fa4a1609bdb04a57eb88695111011619994ff88 /compiler/rustc_interface | |
| parent | ccd6d6c04f7a06d8860301222020ab8ffd045637 (diff) | |
| parent | 10bec8f7ded3ba2fec95e177122f02653d32399a (diff) | |
| download | rust-b4b00c7d103f17a47537524a4e39b6cdaa41f144.tar.gz rust-b4b00c7d103f17a47537524a4e39b6cdaa41f144.zip | |
Rollup merge of #143785 - bjorn3:faster_ra_build_script_build, r=Kobzol
Add --compile-time-deps argument for x check Together with skipping building C++ code in rustc_llvm for check, this reduces the amount of time it takes to do the x check for rust-analyzer analysis from 12m16s to 3m06s when the bootstrap compiler is already downloaded.
Diffstat (limited to 'compiler/rustc_interface')
| -rw-r--r-- | compiler/rustc_interface/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/Cargo.toml b/compiler/rustc_interface/Cargo.toml index a72a7958787..473ac5e0cea 100644 --- a/compiler/rustc_interface/Cargo.toml +++ b/compiler/rustc_interface/Cargo.toml @@ -56,5 +56,6 @@ rustc_abi = { path = "../rustc_abi" } [features] # tidy-alphabetical-start +check_only = ['rustc_codegen_llvm?/check_only'] llvm = ['dep:rustc_codegen_llvm'] # tidy-alphabetical-end |
