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 9df3ccc commit fcc7fc4Copy full SHA for fcc7fc4
src/target/parser.rs
@@ -184,6 +184,10 @@ fn parse_arch(full_arch: &str) -> Option<&str> {
184
"s390x" => "s390x",
185
"xtensa" => "xtensa",
186
187
+ // Arches supported by gcc, but not LLVM.
188
+ arch if arch.starts_with("alpha") => "alpha", // DEC Alpha
189
+ "hppa" => "hppa", // https://en.wikipedia.org/wiki/PA-RISC, also known as HPPA
190
+ arch if arch.starts_with("sh") => "sh", // SuperH
191
_ => return None,
192
})
193
}
0 commit comments