Skip to content

Commit a89e7c8

Browse files
committed
disable mips*musl targets
1 parent 81b9dcd commit a89e7c8

File tree

2 files changed

+4
-20
lines changed

2 files changed

+4
-20
lines changed

src/docker/provided_images.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,6 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &[
7878
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
7979
sub: None
8080
},
81-
ProvidedImage {
82-
name: "mips64-unknown-linux-muslabi64",
83-
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
84-
sub: None
85-
},
86-
ProvidedImage {
87-
name: "mips64el-unknown-linux-muslabi64",
88-
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
89-
sub: None
90-
},
9181
ProvidedImage {
9282
name: "powerpc-unknown-linux-gnu",
9383
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
@@ -163,16 +153,6 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &[
163153
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
164154
sub: None
165155
},
166-
ProvidedImage {
167-
name: "mips-unknown-linux-musl",
168-
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
169-
sub: None
170-
},
171-
ProvidedImage {
172-
name: "mipsel-unknown-linux-musl",
173-
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
174-
sub: None
175-
},
176156
ProvidedImage {
177157
name: "aarch64-linux-android",
178158
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],

targets.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ runners = "qemu-user qemu-system"
154154
build-std = true
155155

156156
[[target]]
157+
disabled = true # https://github.com/cross-rs/cross/issues/1422
157158
target = "mips64-unknown-linux-muslabi64"
158159
os = "ubuntu-latest"
159160
cpp = true
@@ -163,6 +164,7 @@ run = true
163164
build-std = true
164165

165166
[[target]]
167+
disabled = true # https://github.com/cross-rs/cross/issues/1422
166168
target = "mips64el-unknown-linux-muslabi64"
167169
os = "ubuntu-latest"
168170
# FIXME: Lacking partial C++ support due to missing compiler builtins.
@@ -302,6 +304,7 @@ run = true
302304
runners = "qemu-user"
303305

304306
[[target]]
307+
disabled = true # https://github.com/cross-rs/cross/issues/1422
305308
target = "mips-unknown-linux-musl"
306309
os = "ubuntu-latest"
307310
cpp = true
@@ -311,6 +314,7 @@ run = true
311314
build-std = true
312315

313316
[[target]]
317+
disabled = true # https://github.com/cross-rs/cross/issues/1422
314318
target = "mipsel-unknown-linux-musl"
315319
os = "ubuntu-latest"
316320
cpp = true

0 commit comments

Comments
 (0)