about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2021-08-03 19:07:46 +0900
committerGitHub <noreply@github.com>2021-08-03 19:07:46 +0900
commitebebc7a12df3354d3c49b97b9aa07a7bb0c15aa2 (patch)
tree427a88ef1339c92a55ace16ba4816707f6a96dc3
parent5f4cc602fd4d7fa773799e24cacfc64159b9c949 (diff)
parenta43c464acf648e69e57e31203859797f50e53ec7 (diff)
downloadrust-ebebc7a12df3354d3c49b97b9aa07a7bb0c15aa2.tar.gz
rust-ebebc7a12df3354d3c49b97b9aa07a7bb0c15aa2.zip
Rollup merge of #87693 - badboy:enable-ios-sim-target-manifest, r=Mark-Simulacrum
Add `aarch64-apple-ios-sim` as a possible target to the manifest

This should allow rustup and similar to actually make use of this new
target now.

r? ```@Mark-Simulacrum```

Followup to #85782
-rw-r--r--src/tools/build-manifest/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs
index 1e19b7b21d8..ab63a9e2dfa 100644
--- a/src/tools/build-manifest/src/main.rs
+++ b/src/tools/build-manifest/src/main.rs
@@ -54,6 +54,7 @@ static HOSTS: &[&str] = &[
 static TARGETS: &[&str] = &[
     "aarch64-apple-darwin",
     "aarch64-apple-ios",
+    "aarch64-apple-ios-sim",
     "aarch64-fuchsia",
     "aarch64-linux-android",
     "aarch64-pc-windows-msvc",