1 2 3 4 5 6 7 8
use std::env; fn main() { match env::var("CFLAGS") { Ok(cflags) => println!("cargo:rustc-flags={}", cflags), _ => {} } }