From 0c1ee897e5cc87deff720153b3988f54f544a303 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Thu, 3 Apr 2025 11:13:32 +0200 Subject: [PATCH] Fix mips64-openwrt-linux-musl parsing --- src/target/parser.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/target/parser.rs b/src/target/parser.rs index 931ad03e..72b06e4c 100644 --- a/src/target/parser.rs +++ b/src/target/parser.rs @@ -381,8 +381,6 @@ impl<'a> TargetInfo<'a> { let vendor = match vendor { // esp, esp32, esp32s2 etc. vendor if vendor.starts_with("esp") => "espressif", - // FIXME(madsmtm): https://github.com/rust-lang/rust/issues/131165 - "openwrt" => "unknown", // FIXME(madsmtm): Badly named targets `*-linux-android*`, // "linux" makes no sense as the vendor name. "linux" if os == "android" || os == "androideabi" => "unknown",