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 4ce8275 commit 795a12dCopy full SHA for 795a12d
src/lib.rs
@@ -1790,6 +1790,9 @@ impl Build {
1790
} else if target.contains("freebsd") && arch.starts_with("64") {
1791
cmd.args.push(("-march=rv64gc").into());
1792
cmd.args.push("-mabi=lp64d".into());
1793
+ } else if target.contains("openbsd") && arch.starts_with("64") {
1794
+ cmd.args.push(("-march=rv64gc").into());
1795
+ cmd.args.push("-mabi=lp64d".into());
1796
} else if target.contains("linux") && arch.starts_with("32") {
1797
cmd.args.push(("-march=rv32gc").into());
1798
cmd.args.push("-mabi=ilp32d".into());
0 commit comments