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