f128 0.2.1

Bindings to the gcc quadmath library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate cc;

fn main() {
    //gcc::Config::new().file("src/f80.c").flag("-lmath").compile("libf80.a");("libf80.a", &["src/f80.c"]);
    cc::Build::new()
        .flag("-Bstatic")
        .flag("-lgfortran")
        .flag("-lquadmath")
        .file("src/f128.c")
        .compile("libf128.a");
    //("libf128.a", &["src/f128.c"]);

    println!(r"cargo:rustc-flags=-l quadmath");
    //println!(r"cargo:rustc-link-search=C:\Program Files\msys64\usr\lib\gcc\x86_64-pc-msys\6.3.0")
}