mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
2221e1fa93
Rustflags apply to ALL the crates in the graph, while we only need them for the toplevel crate which is the only one getting linked. Rustflags are not equal for all crates, this caused cargo to re-build the same dependency crate multiple times uselessly. After this change, deps are reused more, making builds faster. Note that this only applies when sharing the target/ dir for multiple crates in the repo which is not the default.
44 lines
1.1 KiB
Rust
44 lines
1.1 KiB
Rust
//! adapted from https://github.com/stm32-rs/stm32f7xx-hal/blob/master/build.rs
|
|
use std::env;
|
|
use std::fs::File;
|
|
use std::io::{self, prelude::*};
|
|
use std::path::PathBuf;
|
|
|
|
#[derive(Debug)]
|
|
enum Error {
|
|
Env(env::VarError),
|
|
Io(io::Error),
|
|
}
|
|
|
|
impl From<env::VarError> for Error {
|
|
fn from(error: env::VarError) -> Self {
|
|
Self::Env(error)
|
|
}
|
|
}
|
|
|
|
impl From<io::Error> for Error {
|
|
fn from(error: io::Error) -> Self {
|
|
Self::Io(error)
|
|
}
|
|
}
|
|
|
|
fn main() -> Result<(), Error> {
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
println!("cargo:rerun-if-changed=memory.x");
|
|
|
|
let out_dir = env::var("OUT_DIR")?;
|
|
let out_dir = PathBuf::from(out_dir);
|
|
|
|
let memory_x = include_bytes!("memory.x").as_ref();
|
|
File::create(out_dir.join("memory.x"))?.write_all(memory_x)?;
|
|
|
|
// Tell Cargo where to find the file.
|
|
println!("cargo:rustc-link-search={}", out_dir.display());
|
|
|
|
println!("cargo:rustc-link-arg-bins=--nmagic");
|
|
println!("cargo:rustc-link-arg-bins=-Tlink.x");
|
|
println!("cargo:rustc-link-arg-bins=-Tdefmt.x");
|
|
|
|
Ok(())
|
|
}
|