Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
2b0797a
UnsafePinned: also include the effects of UnsafeCell
RalfJung May 4, 2025
259d6f4
add Miri tests
RalfJung May 4, 2025
033ea63
Do not run PGO/BOLT in x64 Linux alt builds
Kobzol May 30, 2025
ffeb532
Fix broken link to rustc_type_ir module in serialization docs
davidjsonn Jun 1, 2025
a62b7c8
use a relative path, so that this also works offline
tshepang Jun 2, 2025
d243d37
Merge pull request #2439 from rust-lang/tshepang-offline-love
tshepang Jun 2, 2025
23285ef
distracting indirection
tshepang Jun 2, 2025
d6cc62c
Merge pull request #2440 from rust-lang/tshepang-patch-1
Noratrieb Jun 2, 2025
3b85b2f
Trivial: dedup word
smanilov Jun 2, 2025
63ecc0e
Add title and toc to Async chapter
smanilov Jun 2, 2025
f8e21d0
Merge pull request #2444 from smanilov/patch-22
tshepang Jun 2, 2025
7fe7fdd
Merge pull request #2445 from smanilov/patch-23
tshepang Jun 2, 2025
0718d8f
Fix some warning blocks that contain Markdown
fmease Jun 2, 2025
9649a9c
Merge pull request #2446 from fmease/fix-warning-blocks
fmease Jun 2, 2025
e74c2b5
Simplify long sentence
smanilov Jun 2, 2025
10f2bcc
Merge pull request #2443 from smanilov/patch-21
tshepang Jun 2, 2025
8a807cd
This commit adds a `toml` module that represents various subsections …
Shourya742 Jun 3, 2025
cc30123
move target selection to its separate module
Shourya742 Jun 3, 2025
0de60dd
Move all common types, macros and utility method to config/mod.rs
Shourya742 Jun 3, 2025
edada36
add config.rs with new module structuring
Shourya742 Jun 3, 2025
8f22a50
Use 4-core large disk runner for the alt job
Kobzol May 30, 2025
6ec7ec9
correct the imports in flags, tests and download
Shourya742 Jun 3, 2025
bf9c9d2
Preparing for merge from rustc
jieyouxu Jun 3, 2025
b65ceb2
Merge from rustc
jieyouxu Jun 3, 2025
033b829
Merge pull request #2451 from jieyouxu/rustc-pull
jieyouxu Jun 3, 2025
143d813
implement new `x` flag: `--skip-std-check-if-no-download-rustc`
onur-ozkan Jun 3, 2025
f1e6afd
bless tidy
onur-ozkan Jun 3, 2025
9e162fe
add change-entry
onur-ozkan Jun 3, 2025
674a435
update gpu offload build command
ZuseZ4 Jun 3, 2025
0ca1be9
document `skip-std-check-if-no-download-rustc` in rustc-dev-guide
onur-ozkan Jun 4, 2025
c843bec
update `skip_std_check_if_no_download_rustc` doc-comments
onur-ozkan Jun 4, 2025
ff00561
cleaned up some tests
Kivooeo Jun 3, 2025
38fd777
Update link src/doc/rustc-dev-guide/src/serialization.md
davidjsonn Jun 4, 2025
e42b9ee
Rollup merge of #140638 - RalfJung:unsafe-pinned-shared-aliased, r=wo…
matthiaskrgr Jun 5, 2025
4050766
Rollup merge of #141272 - Shourya742:2025-05-18-modularize-config-mod…
matthiaskrgr Jun 5, 2025
801fbde
Rollup merge of #141777 - Kobzol:dist-linux-alt-no-pgo-bolt, r=marcoieni
matthiaskrgr Jun 5, 2025
b457ce2
Rollup merge of #141870 - davidjsonn:master, r=fee1-dead,compiler-errors
matthiaskrgr Jun 5, 2025
bac6f19
Rollup merge of #141938 - ZuseZ4:offload-updates, r=Kobzol
matthiaskrgr Jun 5, 2025
68b311b
Rollup merge of #141962 - BoxyUwU:rdg-push, r=jieyouxu
matthiaskrgr Jun 5, 2025
ab1c2c9
Rollup merge of #141965 - Kivooeo:test-reform, r=jieyouxu
matthiaskrgr Jun 5, 2025
9bd566c
Rollup merge of #141970 - onur-ozkan:skip-stage1-std, r=Kobzol
matthiaskrgr Jun 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update skip_std_check_if_no_download_rustc doc-comments
Signed-off-by: onur-ozkan <[email protected]>
  • Loading branch information
onur-ozkan committed Jun 4, 2025
commit c843bec230d70ee8823568b67e2317ec1e9d1d8a
4 changes: 3 additions & 1 deletion src/bootstrap/src/core/config/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,9 @@ pub struct Config {
/// Cache for determining path modifications
pub path_modification_cache: Arc<Mutex<HashMap<Vec<&'static str>, PathFreshness>>>,

/// Skip checking std if `rust.download-rustc` isn't available, mostly for RA
/// Skip checking the standard library if `rust.download-rustc` isn't available.
/// This is mostly for RA as building the stage1 compiler to check the library tree
/// on each code change might be too much for some computers.
pub skip_std_check_if_no_download_rustc: bool,
}

Expand Down
4 changes: 3 additions & 1 deletion src/bootstrap/src/core/config/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,9 @@ pub struct Flags {
/// Make bootstrap to behave as it's running on the CI environment or not.
#[arg(global = true, long, value_name = "bool")]
pub ci: Option<bool>,
/// Skip checking std if `rust.download-rustc` isn't available, mostly for RA
/// Skip checking the standard library if `rust.download-rustc` isn't available.
/// This is mostly for RA as building the stage1 compiler to check the library tree
/// on each code change might be too much for some computers.
#[arg(global = true, long)]
pub skip_std_check_if_no_download_rustc: bool,
}
Expand Down
46 changes: 23 additions & 23 deletions src/etc/completions/x.fish

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions src/etc/completions/x.ps1

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions src/etc/completions/x.py.fish

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions src/etc/completions/x.py.ps1

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions src/etc/completions/x.py.zsh

Large diffs are not rendered by default.

46 changes: 23 additions & 23 deletions src/etc/completions/x.zsh

Large diffs are not rendered by default.

Loading