Skip to content

Commit

Permalink
disable mips*musl targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Feb 1, 2024
1 parent 81b9dcd commit a89e7c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/docker/provided_images.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,6 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &[
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
sub: None
},
ProvidedImage {
name: "mips64-unknown-linux-muslabi64",
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
sub: None
},
ProvidedImage {
name: "mips64el-unknown-linux-muslabi64",
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
sub: None
},
ProvidedImage {
name: "powerpc-unknown-linux-gnu",
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
Expand Down Expand Up @@ -163,16 +153,6 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &[
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
sub: None
},
ProvidedImage {
name: "mips-unknown-linux-musl",
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
sub: None
},
ProvidedImage {
name: "mipsel-unknown-linux-musl",
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
sub: None
},
ProvidedImage {
name: "aarch64-linux-android",
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
Expand Down
4 changes: 4 additions & 0 deletions targets.toml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ runners = "qemu-user qemu-system"
build-std = true

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

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

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

[[target]]
disabled = true # https://github.com/cross-rs/cross/issues/1422
target = "mipsel-unknown-linux-musl"
os = "ubuntu-latest"
cpp = true
Expand Down

0 comments on commit a89e7c8

Please sign in to comment.