Skip to content

Commit fa41e9b

Browse files
authored
Merge pull request #4525 from rust-lang/rustup-2025-08-13
Automatic Rustup
2 parents 85c8d70 + 4b5f667 commit fa41e9b

File tree

699 files changed

+11133
-6348
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

699 files changed

+11133
-6348
lines changed

.github/ISSUE_TEMPLATE/documentation.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Documentation problem
2-
description: Create a report for a documentation problem.
2+
description: Report an issue with documentation content.
33
labels: ["A-docs"]
44
body:
55
- type: markdown
@@ -19,20 +19,20 @@ body:
1919
- [The Rustonomicon](https://github.com/rust-lang/nomicon/issues)
2020
- [The Embedded Book](https://github.com/rust-embedded/book/issues)
2121
22-
All other documentation issues should be filed here.
22+
Or, if you find an issue related to rustdoc (e.g. doctest, rustdoc UI), please use the rustdoc issue template instead.
2323
24-
Or, if you find an issue related to rustdoc (e.g. doctest, rustdoc UI), please use the bug report or blank issue template instead.
24+
All other documentation issues should be filed here.
2525
2626
- type: textarea
2727
id: location
2828
attributes:
29-
label: Location
29+
label: Location (URL)
3030
validations:
31-
required: true
31+
required: true
3232

3333
- type: textarea
3434
id: summary
3535
attributes:
3636
label: Summary
3737
validations:
38-
required: true
38+
required: true

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5284,9 +5284,9 @@ dependencies = [
52845284

52855285
[[package]]
52865286
name = "sysinfo"
5287-
version = "0.36.1"
5287+
version = "0.37.0"
52885288
source = "registry+https://github.com/rust-lang/crates.io-index"
5289-
checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d"
5289+
checksum = "07cec4dc2d2e357ca1e610cfb07de2fa7a10fc3e9fe89f72545f3d244ea87753"
52905290
dependencies = [
52915291
"libc",
52925292
"objc2-core-foundation",

bootstrap.example.toml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -740,11 +740,19 @@
740740
# result (broken, compiling, testing) into this JSON file.
741741
#rust.save-toolstates = <none> (path)
742742

743-
# This is an array of the codegen backends that will be compiled for the rustc
744-
# that's being compiled. The default is to only build the LLVM codegen backend,
745-
# and currently the only standard options supported are `"llvm"`, `"cranelift"`
746-
# and `"gcc"`. The first backend in this list will be used as default by rustc
747-
# when no explicit backend is specified.
743+
# This array serves three distinct purposes:
744+
# - Backends in this list will be automatically compiled and included in the sysroot of each
745+
# rustc compiled by bootstrap.
746+
# - The first backend in this list will be configured as the **default codegen backend** by each
747+
# rustc compiled by bootstrap. In other words, if the first backend is e.g. cranelift, then when
748+
# we build a stage 1 rustc, it will by default compile Rust programs using the Cranelift backend.
749+
# This also means that stage 2 rustc would get built by the Cranelift backend.
750+
# - Running `x dist` (without additional arguments, or with `--include-default-paths`) will produce
751+
# a dist component/tarball for the Cranelift backend if it is included in this array.
752+
#
753+
# Note that the LLVM codegen backend is special and will always be built and distributed.
754+
#
755+
# Currently, the only standard options supported here are `"llvm"`, `"cranelift"` and `"gcc"`.
748756
#rust.codegen-backends = ["llvm"]
749757

750758
# Indicates whether LLD will be compiled and made available in the sysroot for rustc to execute, and

0 commit comments

Comments
 (0)