Skip to content

Commit

Permalink
Auto merge of #2065 - RalfJung:readme, r=RalfJung
Browse files Browse the repository at this point in the history
readme

We support SIMD these days. :D At least via portable-simd.
  • Loading branch information
bors committed Apr 16, 2022
2 parents 1ef91e1 + efe871f commit d1f31f9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,11 @@ in your program, and cannot run all programs:
executions.
* Miri runs the program as a platform-independent interpreter, so the program
has no access to most platform-specific APIs or FFI. A few APIs have been
implemented (such as printing to stdout) but most have not: for example, Miri
currently does not support SIMD or networking.
implemented (such as printing to stdout, accessing environment variables, and
basic file system access) but most have not: for example, Miri currently does
not support networking. System API support varies between targets; if you run
on Windows it is a good idea to use `--target x86_64-unknown-linux-gnu` to get
better support.
* Threading support is not finished yet. E.g., weak memory effects are not
emulated and spin loops (without syscalls) just loop forever. There is no
threading support on Windows.
Expand Down

0 comments on commit d1f31f9

Please sign in to comment.