build.rs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // NOTE: Adapted from cortex-m/build.rs
  2. use riscv_target::Target;
  3. use std::{env, fs, io, path::PathBuf};
  4. fn add_linker_script(arch_width: u32) -> io::Result<()> {
  5. // Read the file to a string and replace all occurrences of ${ARCH_WIDTH} with the arch width
  6. let mut content = fs::read_to_string("link.x.in")?;
  7. content = content.replace("${ARCH_WIDTH}", &arch_width.to_string());
  8. let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
  9. // Put the linker script somewhere the linker can find it
  10. fs::write(out_dir.join("link.x"), content)?;
  11. println!("cargo:rustc-link-search={}", out_dir.display());
  12. println!("cargo:rerun-if-changed=link.x");
  13. Ok(())
  14. }
  15. fn main() {
  16. let target = env::var("TARGET").unwrap();
  17. let _name = env::var("CARGO_PKG_NAME").unwrap();
  18. // set configuration flags depending on the target
  19. if target.starts_with("riscv") {
  20. println!("cargo:rustc-cfg=riscv");
  21. let target = Target::from_target_str(&target);
  22. // generate the linker script
  23. let arch_width = match target.bits {
  24. 32 => {
  25. println!("cargo:rustc-cfg=riscv32");
  26. 4
  27. }
  28. 64 => {
  29. println!("cargo:rustc-cfg=riscv64");
  30. 8
  31. }
  32. _ => panic!("Unsupported bit width"),
  33. };
  34. add_linker_script(arch_width).unwrap();
  35. // expose the ISA extensions
  36. if target.has_extension('m') {
  37. println!("cargo:rustc-cfg=riscvm");
  38. }
  39. }
  40. }