We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a5991 commit 8054df0Copy full SHA for 8054df0
src/target/parser.rs
@@ -386,6 +386,9 @@ impl<'a> TargetInfo<'a> {
386
// FIXME(madsmtm): Badly named targets `*-linux-android*`,
387
// "linux" makes no sense as the vendor name.
388
"linux" if os == "android" || os == "androideabi" => "unknown",
389
+ // FIXME(madsmtm): Fix in `rustc` after
390
+ // https://github.com/rust-lang/compiler-team/issues/850.
391
+ "wali" => "unknown",
392
// Some Linux distributions set their name as the target vendor,
393
// so we have to assume that it can be an arbitary string.
394
vendor => vendor,
0 commit comments