You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
extern crate riscv_target;
|
|
|
|
use riscv_target::Target;
|
|
use std::path::PathBuf;
|
|
use std::{env, fs};
|
|
|
|
fn main() {
|
|
let target = env::var("TARGET").unwrap();
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
let name = env::var("CARGO_PKG_NAME").unwrap();
|
|
|
|
if target.starts_with("riscv") && env::var_os("CARGO_FEATURE_INLINE_ASM").is_none() {
|
|
let mut target = Target::from_target_str(&target);
|
|
target.retain_extensions("ic");
|
|
|
|
let target = target.to_string();
|
|
|
|
fs::copy(
|
|
format!("bin/{}.a", target),
|
|
out_dir.join(format!("lib{}.a", name)),
|
|
)
|
|
.unwrap();
|
|
|
|
println!("cargo:rustc-link-lib=static={}", name);
|
|
println!("cargo:rustc-link-search={}", out_dir.display());
|
|
}
|
|
|
|
if target.contains("riscv32") {
|
|
println!("cargo:rustc-cfg=riscv");
|
|
println!("cargo:rustc-cfg=riscv32");
|
|
} else if target.contains("riscv64") {
|
|
println!("cargo:rustc-cfg=riscv");
|
|
println!("cargo:rustc-cfg=riscv64");
|
|
}
|
|
}
|