@@ -147,8 +147,8 @@ Several `-Z` flags are relevant for Miri:
147
147
148
148
* ` -Zmiri-seed=<hex> ` is a custom ` -Z ` flag added by Miri. It configures the
149
149
seed of the RNG that Miri uses to resolve non-determinism. This RNG is used
150
- to pick base addresses for allocations, and when the interpreted program
151
- requests system entropy. The default seed is 0.
150
+ to pick base addresses for allocations. When isolation is enabled (the default),
151
+ this is also used to emulate system entropy. The default seed is 0.
152
152
** NOTE** : This entropy is not good enough for cryptographic use! Do not
153
153
generate secret keys in Miri or perform other kinds of cryptographic
154
154
operations that rely on proper random numbers.
@@ -157,8 +157,8 @@ Several `-Z` flags are relevant for Miri:
157
157
useful for debugging. It means Miri will miss bugs in your program. However,
158
158
this can also help to make Miri run faster.
159
159
* ` -Zmiri-disable-isolation ` disables host host isolation. As a consequence,
160
- the program has access to host resources such as environment variables and
161
- randomness (and, eventually, file systems and more) .
160
+ the program has access to host resources such as environment variables, file
161
+ systems, and randomness .
162
162
* ` -Zmiri-ignore-leaks ` disables the memory leak checker.
163
163
* ` -Zmiri-env-exclude=<var> ` keeps the ` var ` environment variable isolated from
164
164
the host. Can be used multiple times to exclude several variables. The ` TERM `
0 commit comments