@@ -87,11 +87,6 @@ can pass arguments to Miri via `MIRIFLAGS`. For example,
87
87
` MIRIFLAGS="-Zmiri-disable-stacked-borrows" cargo miri run ` runs the program
88
88
without checking the aliasing of references.
89
89
90
- Miri supports cross-execution: if you want to run the program as if it was a
91
- Linux program, you can do ` cargo miri run --target x86_64-unknown-linux-gnu ` .
92
- This is particularly useful if you are using Windows, as the Linux target is
93
- much better supported than Windows targets.
94
-
95
90
When compiling code via ` cargo miri ` , the ` cfg(miri) ` config flag is set. You
96
91
can use this to ignore test cases that fail under Miri because they do things
97
92
Miri does not support:
@@ -116,6 +111,19 @@ error: unsupported operation: can't call foreign function: bind
116
111
performed an operation that the interpreter does not support
117
112
```
118
113
114
+ ### Cross-interpretation: running for different targets
115
+
116
+ Miri cannot just run a binary or test suite for your host target, it can also
117
+ perform cross-interpretation for arbitrary foreign targets: `cargo miri run
118
+ --target x86_64-unknown-linux-gnu` will run your program as if it was a Linux
119
+ program, no matter your host OS. This is particularly useful if you are using
120
+ Windows, as the Linux target is much better supported than Windows targets.
121
+
122
+ You can also use this to test platforms with different properties than your host
123
+ platform. For example ` cargo miri test --target mips64-unknown-linux-gnuabi64 `
124
+ will run your test suite on a big-endian target, which is useful for testing
125
+ endian-sensitive code.
126
+
119
127
### Running Miri on CI
120
128
121
129
To run Miri on CI, make sure that you handle the case where the latest nightly
0 commit comments