Skip to content

Commit 99e5a1a

Browse files
committed
Add aarch64_be-unknown-linux-musl target
1 parent baf457e commit 99e5a1a

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-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-musl` | 1.2.3 | 9.2.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
@@ -128,6 +128,11 @@ pub static PROVIDED_IMAGES: &[ProvidedImage] = &[
128128
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
129129
sub: None
130130
},
131+
ProvidedImage {
132+
name: "aarch64_be-unknown-linux-musl",
133+
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],
134+
sub: None
135+
},
131136
ProvidedImage {
132137
name: "arm-unknown-linux-musleabihf",
133138
platforms: &[ImagePlatform::X86_64_UNKNOWN_LINUX_GNU],

targets.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,14 @@ dylib = true
262262
std = true
263263
run = true
264264

265+
[[target]]
266+
target = "aarch64_be-unknown-linux-musl"
267+
os = "ubuntu-latest"
268+
cpp = true
269+
dylib = true
270+
std = true
271+
run = true
272+
265273
[[target]]
266274
target = "arm-unknown-linux-musleabihf"
267275
os = "ubuntu-latest"

0 commit comments

Comments
 (0)