Skip to content

Commit

Permalink
add support for aarch64-pc-windows-gnullvm (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed Nov 4, 2022
1 parent dd84f65 commit cb031b2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/targets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@ pub enum Environment {
Gnuspe,
Gnux32,
GnuIlp32,
GnuLlvm,
HermitKernel,
LinuxKernel,
Macabi,
Expand Down Expand Up @@ -1209,6 +1210,7 @@ impl fmt::Display for Environment {
Gnuspe => "gnuspe",
Gnux32 => "gnux32",
GnuIlp32 => "gnu_ilp32",
GnuLlvm => "gnullvm",
HermitKernel => "hermitkernel",
LinuxKernel => "linuxkernel",
Macabi => "macabi",
Expand Down Expand Up @@ -1251,6 +1253,7 @@ impl FromStr for Environment {
"gnuspe" => Gnuspe,
"gnux32" => Gnux32,
"gnu_ilp32" => GnuIlp32,
"gnullvm" => GnuLlvm,
"hermitkernel" => HermitKernel,
"linuxkernel" => LinuxKernel,
"macabi" => Macabi,
Expand Down Expand Up @@ -1328,6 +1331,7 @@ mod tests {
"aarch64-kmc-solid_asp3",
"aarch64-linux-android",
"aarch64-pc-windows-msvc",
"aarch64-pc-windows-gnullvm",
"aarch64-unknown-cloudabi",
"aarch64-unknown-freebsd",
"aarch64-unknown-hermit",
Expand Down Expand Up @@ -1505,6 +1509,7 @@ mod tests {
"x86_64-pc-solaris",
"x86_64-pc-windows-gnu",
"x86_64-pc-windows-msvc",
"x86_64-pc-windows-gnullvm",
"x86_64-rumprun-netbsd", // Removed in 1.53.0
"x86_64-sun-solaris",
"x86_64-unknown-bitrig",
Expand Down

0 comments on commit cb031b2

Please sign in to comment.