use std::{env, error::Error, path::PathBuf};
#[cfg(not(feature = "compile-alloca"))]
fn main() -> Result<(), Box<dyn Error>> {
let alloca_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR")?).join("alloca");
if env::var("TARGET")? == "wasm32v1-none" {
println!("cargo:rustc-link-lib=static=calloca");
println!("cargo:rustc-link-search=native={}", alloca_dir.display());
}
Ok(())
}
#[cfg(feature = "compile-alloca")]
fn main() -> Result<(), Box<dyn Error>> {
let alloca_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR")?).join("alloca");
let mut builder = cc::Build::new();
#[cfg(feature = "stack-clash-protection")]
builder.flag_if_supported("-fstack-clash-protection");
if option_env!("CC") == Some("clang") {
builder.flag("-flto");
}
builder
.file(alloca_dir.join("alloca.c"))
.opt_level(2)
.compile("calloca");
Ok(())
}