pH/build.rs

57 lines
1.2 KiB
Rust
Raw Normal View History

2019-09-20 18:15:10 -04:00
use std::path::{Path, PathBuf};
use std::env;
use std::io::Result;
use std::process::Command;
fn main() -> Result<()> {
build_phinit()?;
run_simple_make("sommelier")?;
run_simple_make("kernel")?;
2019-09-21 20:46:02 -04:00
// Rerun build.rs upon making or pulling in new commits
println!("cargo:rerun-if-changed=.git/refs/heads/master");
2019-09-20 18:15:10 -04:00
Ok(())
}
fn build_phinit() -> Result<()> {
2019-09-21 20:46:02 -04:00
let _dir = ChdirTo::path("ph-init");
Command::new("cargo")
.arg("build")
.arg("--release")
.status()?;
Command::new("strip")
.arg("target/release/ph-init")
.status()?;
2019-09-20 18:15:10 -04:00
Ok(())
}
fn run_simple_make<P: AsRef<Path>>(directory: P) -> Result<()> {
2019-09-21 20:46:02 -04:00
let _dir = ChdirTo::path(directory);
Command::new("make").status()?;
Ok(())
2019-09-20 18:15:10 -04:00
}
2019-09-21 20:46:02 -04:00
struct ChdirTo {
saved: PathBuf,
2019-09-20 18:15:10 -04:00
}
2019-09-21 20:46:02 -04:00
impl ChdirTo {
fn path<P: AsRef<Path>>(directory: P) -> ChdirTo {
let saved = env::current_dir()
.expect("current_dir()");
env::set_current_dir(directory.as_ref())
.expect("set_current_dir()");
ChdirTo { saved }
}
2019-09-20 18:15:10 -04:00
}
2019-09-21 20:46:02 -04:00
impl Drop for ChdirTo {
fn drop(&mut self) {
env::set_current_dir(&self.saved)
.expect("restore current dir");
}
}
2019-09-20 18:15:10 -04:00