Promote loongarch64-unknown-linux-musl to Tier 2 with host tools · rust-lang/rust@16fef40 (original) (raw)

4 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1 1 Change this file to make users of the `download-ci-llvm` configuration download
2 2 a new version of LLVM from CI, even if the LLVM submodule hasn’t changed.
3 3
4 -Last change is for: https://github.com/rust-lang/rust/pull/125141
4 +Last change is for: https://github.com/rust-lang/rust/pull/126298
Original file line number Diff line number Diff line change
@@ -217,6 +217,7 @@ pub(crate) fn is_ci_llvm_available(config: &Config, asserts: bool) -> bool {
217 217 ("arm-unknown-linux-gnueabihf", false),
218 218 ("armv7-unknown-linux-gnueabihf", false),
219 219 ("loongarch64-unknown-linux-gnu", false),
220 +("loongarch64-unknown-linux-musl", false),
220 221 ("mips-unknown-linux-gnu", false),
221 222 ("mips64-unknown-linux-gnuabi64", false),
222 223 ("mips64el-unknown-linux-gnuabi64", false),
Original file line number Diff line number Diff line change
@@ -93,6 +93,7 @@ target | notes
93 93 `arm-unknown-linux-gnueabihf` | Armv6 Linux, hardfloat (kernel 3.2, glibc 2.17)
94 94 `armv7-unknown-linux-gnueabihf` | Armv7-A Linux, hardfloat (kernel 3.2, glibc 2.17)
95 95 [`loongarch64-unknown-linux-gnu`](platform-support/loongarch-linux.md) | LoongArch64 Linux, LP64D ABI (kernel 5.19, glibc 2.36)
96 +[`loongarch64-unknown-linux-musl`](platform-support/loongarch-linux.md) | LoongArch64 Linux, LP64D ABI (kernel 5.19, musl 1.2.5)
96 97 `powerpc-unknown-linux-gnu` | PowerPC Linux (kernel 3.2, glibc 2.17)
97 98 `powerpc64-unknown-linux-gnu` | PPC64 Linux (kernel 3.2, glibc 2.17)
98 99 `powerpc64le-unknown-linux-gnu` | PPC64LE Linux (kernel 3.10, glibc 2.17)
@@ -305,7 +306,6 @@ target | std host notes
305 306 `i686-uwp-windows-msvc` | ✓ [^x86_32-floats-return-ABI]
306 307 [`i686-win7-windows-msvc`](platform-support/win7-windows-msvc.md) | ✓ 32-bit Windows 7 support [^x86_32-floats-return-ABI]
307 308 `i686-wrs-vxworks` | ? [^x86_32-floats-return-ABI]
308 -[`loongarch64-unknown-linux-musl`](platform-support/loongarch-linux.md) | ? LoongArch64 Linux (LP64D ABI) with musl 1.2.3
309 309 [`m68k-unknown-linux-gnu`](platform-support/m68k-unknown-linux-gnu.md) | ? Motorola 680x0 Linux
310 310 `mips-unknown-linux-gnu` | ✓ MIPS Linux (kernel 4.4, glibc 2.23)
311 311 `mips-unknown-linux-musl` | ✓ MIPS Linux with musl 1.2.3
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@ static HOSTS: &[&str] = &[
25 25 "i686-pc-windows-msvc",
26 26 "i686-unknown-linux-gnu",
27 27 "loongarch64-unknown-linux-gnu",
28 +"loongarch64-unknown-linux-musl",
28 29 "mips-unknown-linux-gnu",
29 30 "mips64-unknown-linux-gnuabi64",
30 31 "mips64el-unknown-linux-gnuabi64",
@@ -106,6 +107,7 @@ static TARGETS: &[&str] = &[
106 107 "i686-unknown-redox",
107 108 "i686-unknown-uefi",
108 109 "loongarch64-unknown-linux-gnu",
110 +"loongarch64-unknown-linux-musl",
109 111 "loongarch64-unknown-none",
110 112 "loongarch64-unknown-none-softfloat",
111 113 "m68k-unknown-linux-gnu",