1
- # rustbuild - Bootstrapping Rust
1
+ # Bootstrapping Rust
2
2
3
3
This README is aimed at helping to explain how Rust is bootstrapped,
4
- and some of the technical details of the build system.
4
+ and some of the technical details of the bootstrap build system.
5
5
6
6
Note that this README only covers internal information, not how to use the tool.
7
7
Please check [ bootstrapping dev guide] [ bootstrapping-dev-guide ] for further information.
@@ -12,17 +12,17 @@ Please check [bootstrapping dev guide][bootstrapping-dev-guide] for further info
12
12
13
13
The build system defers most of the complicated logic of managing invocations
14
14
of rustc and rustdoc to Cargo itself. However, moving through various stages
15
- and copying artifacts is still necessary for it to do. Each time rustbuild
15
+ and copying artifacts is still necessary for it to do. Each time bootstrap
16
16
is invoked, it will iterate through the list of predefined steps and execute
17
17
each serially in turn if it matches the paths passed or is a default rule.
18
- For each step, rustbuild relies on the step internally being incremental and
19
- parallel. Note, though, that the ` -j ` parameter to rustbuild gets forwarded
18
+ For each step, bootstrap relies on the step internally being incremental and
19
+ parallel. Note, though, that the ` -j ` parameter to bootstrap gets forwarded
20
20
to appropriate test harnesses and such.
21
21
22
22
## Build phases
23
23
24
- The rustbuild build system goes through a few phases to actually build the
25
- compiler. What actually happens when you invoke rustbuild is:
24
+ Bootstrap build system goes through a few phases to actually build the
25
+ compiler. What actually happens when you invoke bootstrap is:
26
26
27
27
1 . The entry point script (` x ` for unix like systems, ` x.ps1 ` for windows systems,
28
28
` x.py ` cross-platform) is run. This script is responsible for downloading the stage0
@@ -151,9 +151,9 @@ build/
151
151
stage3/
152
152
```
153
153
154
- ## Extending rustbuild
154
+ ## Extending bootstrap
155
155
156
- When you use the bootstrap system , you'll call it through the entry point script
156
+ When you use bootstrap, you'll call it through the entry point script
157
157
(` x ` , ` x.ps1 ` , or ` x.py ` ). However, most of the code lives in ` src/bootstrap ` .
158
158
` bootstrap ` has a difficult problem: it is written in Rust, but yet it is run
159
159
before the Rust compiler is built! To work around this, there are two components
0 commit comments