Skip to content

Commit 4156752

Browse files
committed
Add CloudABI to the list of supported targets.
Backend definitions for these targets are present, meaning we can start announcing this target. While there, sort the list alphabetically.
1 parent 0e703ed commit 4156752

File tree

1 file changed

+6
-2
lines changed
  • src/tools/build-manifest/src

1 file changed

+6
-2
lines changed

src/tools/build-manifest/src/main.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ static HOSTS: &'static [&'static str] = &[
4646

4747
static TARGETS: &'static [&'static str] = &[
4848
"aarch64-apple-ios",
49-
"aarch64-unknown-fuchsia",
5049
"aarch64-linux-android",
50+
"aarch64-unknown-cloudabi",
51+
"aarch64-unknown-fuchsia",
5152
"aarch64-unknown-linux-gnu",
5253
"aarch64-unknown-linux-musl",
5354
"arm-linux-androideabi",
@@ -58,6 +59,7 @@ static TARGETS: &'static [&'static str] = &[
5859
"armv5te-unknown-linux-gnueabi",
5960
"armv7-apple-ios",
6061
"armv7-linux-androideabi",
62+
"armv7-unknown-cloudabi-eabihf",
6163
"armv7-unknown-linux-gnueabihf",
6264
"armv7-unknown-linux-musleabihf",
6365
"armv7s-apple-ios",
@@ -69,6 +71,7 @@ static TARGETS: &'static [&'static str] = &[
6971
"i686-linux-android",
7072
"i686-pc-windows-gnu",
7173
"i686-pc-windows-msvc",
74+
"i686-unknown-cloudabi",
7275
"i686-unknown-freebsd",
7376
"i686-unknown-linux-gnu",
7477
"i686-unknown-linux-musl",
@@ -86,13 +89,14 @@ static TARGETS: &'static [&'static str] = &[
8689
"sparcv9-sun-solaris",
8790
"wasm32-unknown-emscripten",
8891
"wasm32-unknown-unknown",
89-
"x86_64-linux-android",
9092
"x86_64-apple-darwin",
9193
"x86_64-apple-ios",
94+
"x86_64-linux-android",
9295
"x86_64-pc-windows-gnu",
9396
"x86_64-pc-windows-msvc",
9497
"x86_64-rumprun-netbsd",
9598
"x86_64-sun-solaris",
99+
"x86_64-unknown-cloudabi",
96100
"x86_64-unknown-freebsd",
97101
"x86_64-unknown-fuchsia",
98102
"x86_64-unknown-linux-gnu",

0 commit comments

Comments
 (0)