esp-hal/esp32h2-hal/build.rs
2023-10-05 09:00:00 -07:00

41 lines
1.5 KiB
Rust

use std::{env, error::Error, fs, path::PathBuf};
#[cfg(not(feature = "direct-boot"))]
fn main() -> Result<(), Box<dyn Error>> {
// Put the linker script somewhere the linker can find it
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
println!("cargo:rustc-link-search={}", out.display());
fs::copy("ld/bl-esp32h2-memory.x", out.join("memory.x"))?;
fs::copy("ld/bl-riscv-link.x", out.join("bl-riscv-link.x"))?;
fs::copy("ld/bl-linkall.x", out.join("linkall.x"))?;
fs::copy("ld/rom-functions.x", out.join("rom-functions.x"))?;
// Only re-run the build script when memory.x is changed,
// instead of when any part of the source code changes.
println!("cargo:rerun-if-changed=ld/memory.x");
Ok(())
}
#[cfg(feature = "direct-boot")]
fn main() -> Result<(), Box<dyn Error>> {
// Put the linker script somewhere the linker can find it
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
println!("cargo:rustc-link-search={}", out.display());
fs::copy("ld/db-esp32h2-memory.x", out.join("memory.x"))?;
fs::copy("ld/db-esp32h2-link.x", out.join("esp32h2-link.x"))?;
fs::copy("ld/db-riscv-link.x", out.join("riscv-link.x"))?;
fs::copy("ld/db-linkall.x", out.join("linkall.x"))?;
fs::copy("ld/rom-functions.x", out.join("rom-functions.x"))?;
// Only re-run the build script when memory.x is changed,
// instead of when any part of the source code changes.
println!("cargo:rerun-if-changed=ld/memory.x");
Ok(())
}