Skip to content

Commit 9ee25e0

Browse files
committed
Replace x86_64-sun-solaris with x86_64-pc-solaris
rust-lang/rust#82216 removed the x86_64-sun-solaris target from rustup, changing it to use x86_64-pc-solaris instead. Related issues: * rust-lang/rust#85098
1 parent eda4ef6 commit 9ee25e0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ targets = [
6565
"aarch64-linux-android",
6666
"x86_64-apple-darwin",
6767
"x86_64-pc-windows-msvc",
68-
"x86_64-sun-solaris",
68+
"x86_64-pc-solaris",
6969
"x86_64-unknown-dragonfly",
7070
"x86_64-unknown-freebsd",
7171
"x86_64-unknown-linux-gnu",

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Targets available via Rustup that are supported.
2-
TARGETS ?= "aarch64-apple-ios" "aarch64-linux-android" "x86_64-apple-darwin" "x86_64-pc-windows-msvc" "x86_64-sun-solaris" "x86_64-unknown-freebsd" "x86_64-unknown-linux-gnu" "x86_64-unknown-netbsd"
2+
TARGETS ?= "aarch64-apple-ios" "aarch64-linux-android" "x86_64-apple-darwin" "x86_64-pc-windows-msvc" "x86_64-pc-solaris" "x86_64-unknown-freebsd" "x86_64-unknown-linux-gnu" "x86_64-unknown-netbsd"
33

44
test:
55
cargo test --all-features

ci/azure-cross-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
Solaris:
3434
vmImage: ubuntu-16.04
35-
target: x86_64-sun-solaris
35+
target: x86_64-pc-solaris
3636

3737
pool:
3838
vmImage: $(vmImage)

0 commit comments

Comments
 (0)