We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77a5681 commit 8108927Copy full SHA for 8108927
xtask/src/lib.rs
@@ -40,8 +40,7 @@ pub static EXAMPLES: &[(&str, &[&str])] = &[
40
pub fn feature_to_target(feat: &str) -> &str {
41
match feat {
42
"51" => "thumbv6m-none-eabi",
43
- "52810" => "thumbv7em-none-eabi",
44
- "52811" => "thumbv7em-none-eabi",
+ "52810" | "52811" => "thumbv7em-none-eabi",
45
_ if feat.starts_with("52") => "thumbv7em-none-eabihf",
46
_ => panic!("unknown Cargo feature `{}`", feat),
47
}
0 commit comments