Skip to content

Commit 607a12f

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 27a6a3c commit 607a12f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ targets = [
6262
"aarch64-linux-android",
6363
"x86_64-apple-darwin",
6464
"x86_64-pc-windows-msvc",
65-
"x86_64-sun-solaris",
65+
"x86_64-pc-solaris",
6666
"x86_64-unknown-dragonfly",
6767
"x86_64-unknown-freebsd",
6868
"x86_64-unknown-linux-gnu",

Makefile

+1-1
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

+1-1
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)