build.rs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // NOTE: Adapted from cortex-m/build.rs
  2. use riscv_target::Target;
  3. use std::env;
  4. use std::fs;
  5. use std::path::PathBuf;
  6. fn add_linker_script(bytes: &[u8]) {
  7. let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
  8. // Put the linker script somewhere the linker can find it
  9. fs::write(out_dir.join("link.x"), bytes).unwrap();
  10. println!("cargo:rustc-link-search={}", out_dir.display());
  11. println!("cargo:rerun-if-changed=link.x");
  12. }
  13. fn main() {
  14. let target = env::var("TARGET").unwrap();
  15. let _name = env::var("CARGO_PKG_NAME").unwrap();
  16. // set configuration flags depending on the target
  17. if target.starts_with("riscv") {
  18. println!("cargo:rustc-cfg=riscv");
  19. let target = Target::from_target_str(&target);
  20. match target.bits {
  21. 32 => {
  22. println!("cargo:rustc-cfg=riscv32");
  23. add_linker_script(include_bytes!("link-rv32.x"));
  24. }
  25. 64 => {
  26. println!("cargo:rustc-cfg=riscv64");
  27. add_linker_script(include_bytes!("link-rv64.x"));
  28. }
  29. _ => panic!("Unsupported bit width"),
  30. }
  31. if target.has_extension('m') {
  32. println!("cargo:rustc-cfg=riscvm"); // we can expose extensions this way
  33. }
  34. }
  35. }