@@ -5,18 +5,18 @@ find useful.
55
66## Getting started
77
8- Check out the issues on this GitHub repository for some ideas. There's lots that
9- needs to be done that we haven't documented in the issues yet, however. For more
10- ideas or help with hacking on Miri, you can contact us ( ` oli-obk ` and ` RalfJ ` )
11- on the [ Rust Zulip] .
8+ Check out the issues on this GitHub repository for some ideas. In particular,
9+ look for the green ` E-* ` labels which mark issues that should be rather
10+ well-suited for onboarding. For more ideas or help with hacking on Miri, you can
11+ contact us ( ` oli-obk ` and ` RalfJ ` ) on the [ Rust Zulip] .
1212
1313[ Rust Zulip ] : https://rust-lang.zulipchat.com
1414
15- ## Building Miri with a pre-built rustc
15+ ## Preparing the build environment
1616
17- Miri heavily relies on internal rustc interfaces to execute MIR. Still, some
18- things (like adding support for a new intrinsic or a shim for an external
19- function being called) can be done by working just on the Miri side .
17+ Miri heavily relies on internal and unstable rustc interfaces to execute MIR,
18+ which means it is important that you install a version of rustc that Miri
19+ actually works with .
2020
2121The ` rust-version ` file contains the commit hash of rustc that Miri is currently
2222tested against. Other versions will likely not work. After installing
@@ -25,42 +25,41 @@ install that exact version of rustc as a toolchain:
2525```
2626./rustup-toolchain
2727```
28+ This will set up a rustup toolchain called ` miri ` and set it as an override for
29+ the current directory.
2830
2931[ `rustup-toolchain-install-master` ] : https://github.com/kennytm/rustup-toolchain-install-master
3032
31- ### Fixing Miri when rustc changes
33+ ## Building and testing Miri
3234
33- Miri is heavily tied to rustc internals, so it is very common that rustc changes
34- break Miri. Fixing those is a good way to get starting working on Miri.
35- Usually, Miri will require changes similar to the other consumers of the changed
36- rustc API, so reading the rustc PR diff is a good way to get an idea for what is
37- needed.
35+ Invoking Miri requires getting a bunch of flags right and setting up a custom
36+ sysroot with xargo. The ` miri ` script takes care of that for you. With the
37+ build environment prepared, compiling Miri is just one command away:
3838
39- To update the ` rustc-version ` file and install the latest rustc, you can run:
4039```
41- ./rustup-toolchain HEAD
40+ ./miri build
4241```
4342
44- Now try ` ./miri test ` , and submit a PR once that works again.
43+ Run ` ./miri ` without arguments to see the other commands our build tool
44+ supports.
4545
46- ## Testing the Miri driver
47- [ testing-miri ] : #testing-the-miri-driver
46+ ### Testing the Miri driver
4847
49- The Miri driver in the ` miri ` binary is the "heart" of Miri: it is basically a
50- version of ` rustc ` that, instead of compiling your code, runs it. It accepts
51- all the same flags as ` rustc ` (though the ones only affecting code generation
52- and linking obviously will have no effect) [ and more] [ miri-flags ] .
48+ The Miri driver compiled from ` src/bin/ miri.rs ` is the "heart" of Miri: it is
49+ basically a version of ` rustc ` that, instead of compiling your code, runs it.
50+ It accepts all the same flags as ` rustc ` (though the ones only affecting code
51+ generation and linking obviously will have no effect) [ and more] [ miri-flags ] .
5352
54- Running the Miri driver requires some fiddling with environment variables, so
55- the ` miri ` script helps you do that. For example, you can (cross-)run the
56- driver on a particular file by doing
53+ [ miri-flags ] : README.md#miri--z-flags-and- environment- variables
54+
55+ For example, you can (cross-)run the driver on a particular file by doing
5756
5857``` sh
5958./miri run tests/run-pass/format.rs
6059./miri run tests/run-pass/hello.rs --target i686-unknown-linux-gnu
6160```
6261
63- and you can (cross-)run the test suite using:
62+ and you can (cross-)run the entire test suite using:
6463
6564```
6665./miri test
@@ -79,7 +78,7 @@ MIRI_LOG=info ./miri run tests/run-pass/vecs.rs
7978```
8079
8180Setting ` MIRI_LOG ` like this will configure logging for Miri itself as well as
82- the ` rustc_middle::mir::interpret ` and ` rustc_mir::interpret ` modules in rustc. You
81+ the ` rustc_middle::mir::interpret ` and ` rustc_mir::interpret ` modules in rustc. You
8382can also do more targeted configuration, e.g. the following helps debug the
8483stacked borrows implementation:
8584
@@ -90,11 +89,11 @@ MIRI_LOG=rustc_mir::interpret=info,miri::stacked_borrows ./miri run tests/run-pa
9089In addition, you can set ` MIRI_BACKTRACE=1 ` to get a backtrace of where an
9190evaluation error was originally raised.
9291
93- ## Testing ` cargo miri `
92+ ### Testing ` cargo miri `
9493
9594Working with the driver directly gives you full control, but you also lose all
96- the convenience provided by cargo. Once your test case depends on a crate, it
97- is probably easier to test it with the cargo wrapper. You can install your
95+ the convenience provided by cargo. Once your test case depends on a crate, it
96+ is probably easier to test it with the cargo wrapper. You can install your
9897development version of Miri using
9998
10099```
@@ -108,10 +107,33 @@ There's a test for the cargo wrapper in the `test-cargo-miri` directory; run
108107` ./run-test.py ` in there to execute it. Like ` ./miri test ` , this respects the
109108` MIRI_TEST_TARGET ` environment variable to execute the test for another target.
110109
111- ## Building Miri with a locally built rustc
110+ ## Advanced topic: other build environments
111+
112+ We described above the simplest way to get a working build environment for Miri,
113+ which is to use the version of rustc indicated by ` rustc-version ` . But
114+ sometimes, that is not enough.
115+
116+ ### Updating ` rustc-version `
117+
118+ The ` rustc-version ` file is regularly updated to keep Miri close to the latest
119+ version of rustc. Usually, new contributors do not have to worry about this. But
120+ sometimes a newer rustc is needed for a patch, and sometimes Miri needs fixing
121+ for changes in rustc. In both cases, ` rustc-version ` needs updating.
122+
123+ To update the ` rustc-version ` file and install the latest rustc, you can run:
124+ ```
125+ ./rustup-toolchain HEAD
126+ ```
127+
128+ Now edit Miri until ` ./miri test ` passes, and submit a PR. Generally, it is
129+ preferred to separate updating ` rustc-version ` and doing what it takes to get
130+ Miri working again, from implementing new features that rely on the updated
131+ rustc. This avoids blocking all Miri development on landing a big PR.
132+
133+ ### Building Miri with a locally built rustc
112134
113135A big part of the Miri driver lives in rustc, so working on Miri will sometimes
114- require using a locally built rustc. The bug you want to fix may actually be on
136+ require using a locally built rustc. The bug you want to fix may actually be on
115137the rustc side, or you just need to get more detailed trace of the execution
116138than what is possible with release builds -- in both cases, you should develop
117139miri against a rustc you compiled yourself, with debug assertions (and hence
@@ -134,4 +156,4 @@ rustup override set custom
134156```
135157
136158With this, you should now have a working development setup! See
137- [ above] [ testing-miri ] for how to proceed working with the Miri driver .
159+ [ above] ( #building-and- testing-miri) for how to proceed working on Miri.
0 commit comments