about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2023-10-27 08:53:49 +0200
committerRalf Jung <post@ralfj.de>2023-10-27 11:52:34 +0200
commitc2f232e5a370c13b275f70b1c334e0bbc1f3038d (patch)
tree9253a726fb91c24431b5512940c0901fb3f84dce
parent51ae1fe84922d2f8d0356696cd3be03077957960 (diff)
downloadrust-c2f232e5a370c13b275f70b1c334e0bbc1f3038d.tar.gz
rust-c2f232e5a370c13b275f70b1c334e0bbc1f3038d.zip
add aarch64-apple-darwin to list of supported targets
-rw-r--r--src/tools/miri/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/miri/README.md b/src/tools/miri/README.md
index ca2bb80bd26..f90fd1f7fc5 100644
--- a/src/tools/miri/README.md
+++ b/src/tools/miri/README.md
@@ -223,9 +223,10 @@ degree documented below):
 - All Rust [Tier 1 targets](https://doc.rust-lang.org/rustc/platform-support.html) are supported by
   Miri. They are all checked on Miri's CI, and some (at least one per OS) are even checked on every
   Rust PR, so the shipped Miri should always work on these targets.
-- We also support `s390x-unknown-linux-gnu` as our "big-endian target of choice".
+- `aarch64-apple-darwin` is supported.
+- `s390x-unknown-linux-gnu` is supported as our "big-endian target of choice".
 - For every other target with OS `linux`, `macos`, or `windows`, Miri should generally work, but we
-  make no promises.
+  make no promises and we don't run tests for such targets.
 - For targets on other operating systems, even basic operations such as printing to the standard
   output might not work, and Miri might fail before even reaching the `main` function.