about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJake Goulding <jake.goulding@gmail.com>2025-08-11 18:40:03 -0400
committerJake Goulding <jake.goulding@gmail.com>2025-08-15 08:38:14 -0400
commit36a38206db1757dcf899644f758e6fc5a04141ad (patch)
treeddb9553d443e3e46f89732e358a8026831c30beb /src
parentba412a6e70ac84641be7764d088acabd0eb3fa39 (diff)
downloadrust-36a38206db1757dcf899644f758e6fc5a04141ad.tar.gz
rust-36a38206db1757dcf899644f758e6fc5a04141ad.zip
Use aarch64-apple-darwin as the fallback doc source for `-apple-`
We are moving away from `x86_64-apple-darwin`, so soon these docs
won't be available.
Diffstat (limited to 'src')
-rw-r--r--src/tools/build-manifest/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs
index 0520eff0fa2..8f88ab10bf7 100644
--- a/src/tools/build-manifest/src/main.rs
+++ b/src/tools/build-manifest/src/main.rs
@@ -205,7 +205,7 @@ static TARGETS: &[&str] = &[
 ///
 /// The order here matters, more specific entries should be first.
 static DOCS_FALLBACK: &[(&str, &str)] = &[
-    ("-apple-", "x86_64-apple-darwin"),
+    ("-apple-", "aarch64-apple-darwin"),
     ("aarch64", "aarch64-unknown-linux-gnu"),
     ("arm-", "aarch64-unknown-linux-gnu"),
     ("", "x86_64-unknown-linux-gnu"),