rsconf 0.2.2

A sane autoconf for rust. build.rs helpers for testing for system headers, libraries, and symbols
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    println!(
        "cargo:rustc-env=RSCONF_TARGET={}",
        std::env::var("TARGET").unwrap()
    );
    println!(
        "cargo:rustc-env=RSCONF_HOST={}",
        std::env::var("HOST").unwrap()
    );
}