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 381741d commit 31f8d57Copy full SHA for 31f8d57
src/lib.rs
@@ -1557,6 +1557,10 @@ impl Build {
1557
cmd.args.push(
1558
format!("--target={}", target.replace("riscv64gc", "riscv64")).into(),
1559
);
1560
+ } else if target.starts_with("riscv32gc-") {
1561
+ cmd.args.push(
1562
+ format!("--target={}", target.replace("riscv32gc", "riscv32")).into(),
1563
+ );
1564
} else if target.contains("uefi") {
1565
if target.contains("x86_64") {
1566
cmd.args.push("--target=x86_64-unknown-windows-gnu".into());
0 commit comments