blob: a51c0e379bf955e2a3c6efb69a24348ee25e82b5 [file] [log] [blame]
Alex Crichtond820c4a2016-01-18 11:16:38 -08001// This build script is distinct from the standard build.rs as it is only used
2// for the BSDs which run a stripped down version. The `all.c` file is assumed
3// to have been already generated for this build script.
4
5extern crate gcc;
6
7fn main() {
8 gcc::Config::new()
9 .file("all.c")
10 .flag("-Wall")
11 .flag("-Wextra")
12 .flag("-Werror")
Knight0e0fb682016-08-09 13:59:40 +080013 .flag("-Wno-deprecated-declarations")
Alex Crichtond820c4a2016-01-18 11:16:38 -080014 .flag("-Wno-type-limits")
15 .compile("liball.a");
16}