use std::env;
use std::path::Path;
fn main() {
let mut build = cc::Build::new();
let cargo_manifest_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
let include_dir = Path::new(&cargo_manifest_dir)
.join("upstream/")
.join("include")
.to_str()
.expect("include path is not valid UTF-8")
.to_string();
println!("cargo:INCLUDE_DIR={include_dir}");
build.include(format!("upstream/include"));
build.include(format!("upstream/src"));
build.file(format!("upstream/src/static.c"));
let target_os = env::var("CARGO_CFG_TARGET_OS").expect("target_os not defined!");
let target_family = env::var("CARGO_CFG_TARGET_FAMILY").expect("target_family not defined!");
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").expect("target_arch not defined!");
if target_family != "windows" {
build.flag("-Wno-error=date-time");
}
if build.get_compiler().is_like_msvc() {
build.cpp(true);
}
build.compile("mimalloc");
if target_os == "linux" && target_arch == "arm" {
let atomic_name = env::var("DEP_ATOMIC").unwrap_or("atomic".to_owned());
println!("cargo:rustc-link-lib={}", atomic_name);
}
if target_os == "windows" {
let libs = ["psapi", "shell32", "user32", "advapi32", "bcrypt"];
for lib in libs {
println!("cargo:rustc-link-lib={}", lib);
}
}
}