Skip to content

Commit ebd4426

Browse files
committed
Add aarch64_be-unknown-linux-gnu target
1 parent baf457e commit ebd4426

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ terminate.
206206
| `aarch64-unknown-linux-gnu` | 2.31 | 9.4.0 || 6.1.0 ||
207207
| `aarch64-unknown-linux-gnu:centos` [7] | 2.17 | 4.8.5 | | 4.2.1 ||
208208
| `aarch64-unknown-linux-musl` | 1.2.3 | 9.2.0 || 6.1.0 ||
209+
| `aarch64_be-unknown-linux-gnu` | 2.31 | 9.4.0 || 6.1.0 ||
209210
| `arm-linux-androideabi` [1] | 9.0.8 | 9.0.8 || 6.1.0 ||
210211
| `arm-unknown-linux-gnueabi` | 2.31 | 9.4.0 || 6.1.0 ||
211212
| `arm-unknown-linux-gnueabihf` | 2.31 | 8.5.0 || 6.1.0 ||

src/docker/provided_images.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &[
2323
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
2424
sub: None
2525
},
26+
ProvidedImage {
27+
name: "aarch64_be-unknown-linux-gnu",
28+
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
29+
sub: None
30+
},
2631
ProvidedImage {
2732
name: "arm-unknown-linux-gnueabi",
2833
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],

targets.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ std = true
5454
run = true
5555
runners = "qemu-user qemu-system"
5656

57+
[[target]]
58+
target = "aarch64_be-unknown-linux-gnu"
59+
os = "ubuntu-latest"
60+
cpp = true
61+
dylib = true
62+
std = true
63+
run = true
64+
runners = "qemu-user"
65+
5766
[[target]]
5867
target = "arm-unknown-linux-gnueabi"
5968
os = "ubuntu-latest"

0 commit comments

Comments
 (0)