You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #37817 - alexcrichton:rustbuild-default, r=brson
mk: Switch rustbuild to the default build system
This commit switches the default build system for Rust from the makefiles to
rustbuild. The rustbuild build system has been in development for almost a year
now and has become quite mature over time. This commit is an implementation of
the proposal on [internals] which slates deletion of the makefiles on
2017-02-02.
[internals]: https://internals.rust-lang.org/t/proposal-for-promoting-rustbuild-to-official-status/4368
This commit also updates various documentation in `README.md`,
`CONTRIBUTING.md`, `src/bootstrap/README.md`, and throughout the source code of
rustbuild itself.
-`make check-stage1-rpass TESTNAME=<substring-of-test-name>` - Run a single
150
-
rpass test with the stage1 compiler (this will be quicker than running the
151
-
command above as we only build the stage1 compiler, not the entire thing).
152
-
You can also leave off the `-rpass` to run all stage1 test types.
153
-
-`make check-stage1-coretest` - Run stage1 tests in `libcore`.
154
-
-`make tidy` - Check that the source code is in compliance with Rust's style
155
-
guidelines. There is no official document describing Rust's full guidelines
156
-
as of yet, but basic rules like 4 spaces for indentation and no more than 99
157
-
characters in a single line should be kept in mind when writing code.
220
+
-`x.py test src/test/run-pass --stage 1 --filter <substring-of-test-name>` -
221
+
Run a single rpass test with the stage1 compiler (this will be quicker than
222
+
running the command above as we only build the stage1 compiler, not the entire
223
+
thing). You can also leave off the directory argument to run all stage1 test
224
+
types.
225
+
-`x.py test src/libcore --stage 1` - Run stage1 tests in `libcore`.
226
+
-`x.py test src/tools/tidy` - Check that the source code is in compliance with
227
+
Rust's style guidelines. There is no official document describing Rust's full
228
+
guidelines as of yet, but basic rules like 4 spaces for indentation and no
229
+
more than 99 characters in a single line should be kept in mind when writing
230
+
code.
158
231
159
232
## Pull Requests
160
233
@@ -172,19 +245,17 @@ amount of time you have to wait. You need to have built the compiler at least
172
245
once before running these will work, but that’s only one full build rather than
173
246
one each time.
174
247
175
-
$ make -j8 rustc-stage1 && make check-stage1
248
+
$ python x.py test --stage 1
176
249
177
250
is one such example, which builds just `rustc`, and then runs the tests. If
178
251
you’re adding something to the standard library, try
179
252
180
-
$ make -j8 check-stage1-std NO_REBUILD=1
181
-
182
-
This will not rebuild the compiler, but will run the tests.
253
+
$ python x.py test src/libstd --stage 1
183
254
184
255
Please make sure your pull request is in compliance with Rust's style
185
256
guidelines by running
186
257
187
-
$ make tidy
258
+
$ python x.py test src/tools/tidy
188
259
189
260
Make this check before every pull request (and every new commit in a pull
190
261
request) ; you can add [git hooks](https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks)
0 commit comments