Skip to content

Commit 4a2e283

Browse files
authored
Merge pull request #2595 from kinnison/fix-2588
chore: Use new platform-support URL
2 parents b7e79de + 680b22b commit 4a2e283

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ci/run.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ case "$(uname -s)" in
1313
* ) FEATURES=('--features' 'vendored-openssl') ;;
1414
esac
1515

16-
# rustc only supports armv7: https://forge.rust-lang.org/release/platform-support.html
16+
# rustc only supports armv7: https://doc.rust-lang.org/nightly/rustc/platform-support.html
1717
if [ "$TARGET" = arm-linux-androideabi ]; then
1818
export CFLAGS='-march=armv7'
1919
fi

doc/src/cross-compilation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Rust [supports a great number of platforms][p]. For many of these platforms
44
The Rust Project publishes binary releases of the standard library, and for
55
some the full compiler. `rustup` gives easy access to all of them.
66

7-
[p]: https://forge.rust-lang.org/release/platform-support.html
7+
[p]: https://doc.rust-lang.org/nightly/rustc/platform-support.html
88

99
When you first install a toolchain, `rustup` installs only the standard
1010
library for your *host* platform - that is, the architecture and operating

src/dist/manifest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ impl Package {
379379
tpkgs
380380
.get(t)
381381
.ok_or_else(|| format!("target '{}' not found in channel. \
382-
Perhaps check https://forge.rust-lang.org/release/platform-support.html for available targets", t).into())
382+
Perhaps check https://doc.rust-lang.org/nightly/rustc/platform-support.html for available targets", t).into())
383383
} else {
384384
Err("no target specified".into())
385385
}

tests/cli-exact.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ fn update_invalid_toolchain() {
425425
r"",
426426
r"info: syncing channel updates for 'nightly-2016-03-1'
427427
info: latest update on 2015-01-02, rust version 1.3.0 (hash-nightly-2)
428-
error: target '2016-03-1' not found in channel. Perhaps check https://forge.rust-lang.org/release/platform-support.html for available targets
428+
error: target '2016-03-1' not found in channel. Perhaps check https://doc.rust-lang.org/nightly/rustc/platform-support.html for available targets
429429
",
430430
);
431431
});
@@ -440,7 +440,7 @@ fn default_invalid_toolchain() {
440440
r"",
441441
r"info: syncing channel updates for 'nightly-2016-03-1'
442442
info: latest update on 2015-01-02, rust version 1.3.0 (hash-nightly-2)
443-
error: target '2016-03-1' not found in channel. Perhaps check https://forge.rust-lang.org/release/platform-support.html for available targets
443+
error: target '2016-03-1' not found in channel. Perhaps check https://doc.rust-lang.org/nightly/rustc/platform-support.html for available targets
444444
",
445445
);
446446
});

0 commit comments

Comments
 (0)