2020-04-28 19:07:49 +08:00
|
|
|
use std::env;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Write;
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
fn main() {
|
2020-07-02 11:36:38 +08:00
|
|
|
println!("cargo:rerun-if-changed=build.rs");
|
2020-04-28 19:07:49 +08:00
|
|
|
let out = env::var("OUT_DIR").unwrap();
|
|
|
|
let out_dir = &PathBuf::from(&out);
|
|
|
|
|
2020-07-02 11:36:38 +08:00
|
|
|
compile_unlzma();
|
2020-04-28 19:07:49 +08:00
|
|
|
// Put the linker script somewhere the linker can find it
|
|
|
|
File::create(out_dir.join("link.x"))
|
|
|
|
.unwrap()
|
|
|
|
.write_all(include_bytes!("link.x"))
|
|
|
|
.unwrap();
|
|
|
|
println!("cargo:rustc-link-search={}", out_dir.display());
|
|
|
|
|
|
|
|
// Only re-run the build script when link.x is changed,
|
|
|
|
// instead of when any part of the source code changes.
|
|
|
|
println!("cargo:rerun-if-changed=link.x");
|
|
|
|
}
|
2020-07-02 11:36:38 +08:00
|
|
|
|
|
|
|
pub fn compile_unlzma() {
|
|
|
|
let cfg = &mut cc::Build::new();
|
|
|
|
cfg.compiler("clang");
|
|
|
|
cfg.no_default_flags(true);
|
|
|
|
cfg.warnings(false);
|
|
|
|
|
|
|
|
cfg.flag("-nostdlib");
|
|
|
|
cfg.flag("-ffreestanding");
|
|
|
|
cfg.flag("-fPIC");
|
|
|
|
cfg.flag("-fno-stack-protector");
|
2020-07-02 13:06:36 +08:00
|
|
|
cfg.flag("--target=armv7-none-eabihf");
|
2020-07-02 11:36:38 +08:00
|
|
|
cfg.flag("-O2");
|
|
|
|
|
|
|
|
let sources = vec![
|
|
|
|
"unlzma.c",
|
|
|
|
];
|
|
|
|
|
|
|
|
let root = Path::new("./");
|
|
|
|
for src in sources {
|
|
|
|
println!("cargo:rerun-if-changed={}", src);
|
|
|
|
cfg.file(root.join("src").join(src));
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg.compile("unlzma");
|
|
|
|
}
|