Skip to content

Commit 85e9da8

Browse files
committed
replace config.toml to bootstrap.toml in src:doc:rustc
1 parent 57645fa commit 85e9da8

Some content is hidden

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

48 files changed

+57
-57
lines changed

src/doc/rustc/src/instrument-coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Rust's source-based code coverage requires the Rust "profiler runtime". Without
2727

2828
The Rust `nightly` distribution channel includes the profiler runtime, by default.
2929

30-
> **Important**: If you are building the Rust compiler from the source distribution, the profiler runtime is _not_ enabled in the default `config.example.toml`. Edit your `config.toml` file and ensure the `profiler` feature is set it to `true` (either under the `[build]` section, or under the settings for an individual `[target.<triple>]`):
30+
> **Important**: If you are building the Rust compiler from the source distribution, the profiler runtime is _not_ enabled in the default `bootstrap.example.toml`. Edit your `bootstrap.toml` file and ensure the `profiler` feature is set it to `true` (either under the `[build]` section, or under the settings for an individual `[target.<triple>]`):
3131
>
3232
> ```toml
3333
> # Build the profiler runtime (required when compiling with options that depend

src/doc/rustc/src/platform-support/TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ What format do binaries use by default? ELF, PE, something else?
2828
## Building the target
2929

3030
If Rust doesn't build the target by default, how can users build it? Can users
31-
just add it to the `target` list in `config.toml`?
31+
just add it to the `target` list in `bootstrap.toml`?
3232

3333
## Building Rust programs
3434

src/doc/rustc/src/platform-support/aarch64-unknown-teeos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ exec /path/to/ohos-sdk/linux/native/llvm/bin/clang++ \
5454

5555
## Building the target
5656

57-
To build a rust toolchain, create a `config.toml` with the following contents:
57+
To build a rust toolchain, create a `bootstrap.toml` with the following contents:
5858

5959
```toml
6060
profile = "compiler"

src/doc/rustc/src/platform-support/apple-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $ rustup target add x86_64-apple-ios
4747
```
4848

4949
The tier 3 targets can be built by enabling them for a `rustc` build in
50-
`config.toml`, by adding, for example:
50+
`bootstrap.toml`, by adding, for example:
5151

5252
```toml
5353
[build]

src/doc/rustc/src/platform-support/apple-tvos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The following APIs are currently known to have missing or incomplete support:
5252
## Building the target
5353

5454
The targets can be built by enabling them for a `rustc` build in
55-
`config.toml`, by adding, for example:
55+
`bootstrap.toml`, by adding, for example:
5656

5757
```toml
5858
[build]

src/doc/rustc/src/platform-support/apple-visionos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ case `XROS_DEPLOYMENT_TARGET`.
3131
## Building the target
3232

3333
The targets can be built by enabling them for a `rustc` build in
34-
`config.toml`, by adding, for example:
34+
`bootstrap.toml`, by adding, for example:
3535

3636
```toml
3737
[build]

src/doc/rustc/src/platform-support/apple-watchos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ case `WATCHOS_DEPLOYMENT_TARGET`.
3737
## Building the target
3838

3939
The targets can be built by enabling them for a `rustc` build in
40-
`config.toml`, by adding, for example:
40+
`bootstrap.toml`, by adding, for example:
4141

4242
```toml
4343
[build]

src/doc/rustc/src/platform-support/arm64e-apple-darwin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See the docs on [`*-apple-darwin`](apple-darwin.md) for general macOS requiremen
1616

1717
## Building the target
1818

19-
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`:
19+
You can build Rust with support for the targets by adding it to the `target` list in `bootstrap.toml`:
2020

2121
```toml
2222
[build]

src/doc/rustc/src/platform-support/arm64e-apple-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the docs on [`*-apple-ios`](apple-ios.md) for general iOS requirements.
1414

1515
## Building the target
1616

17-
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`:
17+
You can build Rust with support for the targets by adding it to the `target` list in `bootstrap.toml`:
1818

1919
```toml
2020
[build]

src/doc/rustc/src/platform-support/arm64e-apple-tvos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To build this target Xcode 12 or higher on macOS is required.
1515

1616
## Building the target
1717

18-
You can build Rust with support for the targets by adding it to the `target` list in `config.toml`:
18+
You can build Rust with support for the targets by adding it to the `target` list in `bootstrap.toml`:
1919

2020
```toml
2121
[build]

0 commit comments

Comments
 (0)