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
@@ -395,17 +374,17 @@ to Miri failing to detect cases of undefined behavior in a program.
395
374
this flag is **unsound**.
396
375
* `-Zmiri-disable-weak-memory-emulation` disables the emulation of some C++11 weak
397
376
memory effects.
398
-
* `-Zmiri-extern-so-file=<path to a shared object file>` is an experimental flag for providing support
399
-
for FFI calls. Functions not provided by that file are still executed via the usual Miri shims.
400
-
**WARNING**: If an invalid/incorrect `.so` file is specified, this can cause undefined behaviour in Miri itself!
401
-
And of course, Miri cannot do any checks on the actions taken by the external code.
377
+
* `-Zmiri-native-lib=<path to a shared object file>` is an experimental flag for providing support
378
+
for calling native functions from inside the interpreter via FFI. Functions not provided by that
379
+
file are still executed via the usual Miri shims.
380
+
**WARNING**: If an invalid/incorrect `.so` file is specified, this can cause Undefined Behavior in Miri itself!
381
+
And of course, Miri cannot do any checks on the actions taken by the native code.
402
382
Note that Miri has its own handling of file descriptors, so if you want to replace *some* functions
403
383
working on file descriptors, you will have to replace *all* of them, or the two kinds of
404
384
file descriptors will be mixed up.
405
385
This is **work in progress**; currently, only integer arguments and return values are
406
386
supported (and no, pointer/integer casts to work around this limitation will not work;
407
-
they will fail horribly). It also only works on unix hosts for now.
408
-
Follow [the discussion on supporting other types](https://github.com/rust-lang/miri/issues/2365).
387
+
they will fail horribly). It also only works on Linux hosts for now.
409
388
* `-Zmiri-measureme=<name>` enables `measureme` profiling for the interpreted program.
410
389
This can be used to find which parts of your program are executing slowly under Miri.
411
390
The profile is written out to a file inside a directory called `<name>`, and can be processed
@@ -484,50 +463,14 @@ by all intended entry points, i.e. `cargo miri` and `./miri {test,run}`):
484
463
* `MIRI_SYSROOT` indicates the sysroot to use. When using `cargo miri`, this skips the automatic
485
464
setup -- only set this if you do not want to use the automatically created sysroot. When invoking
486
465
`cargo miri setup`, this indicates where the sysroot will be put.
487
-
* `MIRI_TEST_TARGET` (recognized by `./miri {test,run}`) indicates which target
488
-
architecture to test against. `miri` and `cargo miri` accept the `--target` flag for the same
489
-
purpose.
490
466
* `MIRI_TEST_THREADS` (recognized by `./miri test`): set the number of threads to use for running tests.
491
467
By default, the number of cores is used.
492
468
* `MIRI_NO_STD` makes sure that the target's sysroot is built without libstd. This allows testing
493
469
and running no_std programs. (Miri has a heuristic to detect no-std targets based on the target
494
470
name; this environment variable is only needed when that heuristic fails.)
495
-
* `RUSTC_BLESS` (recognized by `./miri test` and `cargo-miri-test/run-test.py`): overwrite all
496
-
`stderr`and `stdout` files instead of checking whether the output matches.
497
471
* `MIRI_SKIP_UI_CHECKS` (recognized by `./miri test`): don't check whether the
498
472
`stderr`or `stdout` files match the actual output.
499
473
500
-
The following environment variables are *internal* and must not be used by
501
-
anyone but Miri itself. They are used to communicate between different Miri
502
-
binaries, and as such worth documenting:
503
-
504
-
* `MIRI_BE_RUSTC` can be set to `host` or `target`. It tells the Miri driver to
505
-
actually not interpret the code but compile it like rustc would. With `target`, Miri sets
506
-
some compiler flags to prepare the code for interpretation; with `host`, this is not done.
507
-
This environment variable is useful to be sure that the compiled `rlib`s are compatible
508
-
with Miri.
509
-
* `MIRI_CALLED_FROM_SETUP` is set during the Miri sysroot build,
510
-
which will re-invoke `cargo-miri` as the `rustc` to use for this build.
511
-
* `MIRI_CALLED_FROM_RUSTDOC` when set to any value tells `cargo-miri` that it is
512
-
running as a child process of `rustdoc`, which invokes it twice for each doc-test
513
-
and requires special treatment, most notably a check-only build before interpretation.
514
-
This is set by `cargo-miri` itself when running as a `rustdoc`-wrapper.
515
-
* `MIRI_CWD` when set to any value tells the Miri driver to change to the given
516
-
directory after loading all the source files, but before commencing
517
-
interpretation. This is useful if the interpreted program wants a different
518
-
working directory at run-time than at build-time.
519
-
* `MIRI_LOCAL_CRATES` is set by `cargo-miri` to tell the Miri driver which
520
-
crates should be given special treatment in diagnostics, in addition to the
521
-
crate currently being compiled.
522
-
* `MIRI_ORIG_RUSTDOC` is set and read by different phases of `cargo-miri` to remember the
523
-
value of `RUSTDOC` from before it was overwritten.
524
-
* `MIRI_REPLACE_LIBRS_IF_NOT_TEST` when set to any value enables a hack that helps bootstrap
525
-
run the standard library tests in Miri.
526
-
* `MIRI_VERBOSE` when set to any value tells the various `cargo-miri` phases to
527
-
perform verbose logging.
528
-
* `MIRI_HOST_SYSROOT` is set by bootstrap to tell `cargo-miri` which sysroot to use for *host*
0 commit comments