aboutsummaryrefslogtreecommitdiff
path: root/libc/libc-test/build-generated.rs
blob: a51c0e379bf955e2a3c6efb69a24348ee25e82b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This build script is distinct from the standard build.rs as it is only used
// for the BSDs which run a stripped down version. The `all.c` file is assumed
// to have been already generated for this build script.

extern crate gcc;

fn main() {
    gcc::Config::new()
        .file("all.c")
        .flag("-Wall")
        .flag("-Wextra")
        .flag("-Werror")
        .flag("-Wno-deprecated-declarations")
        .flag("-Wno-type-limits")
        .compile("liball.a");
}