blob: 41b562723f21d89da2455993278551e7cfee352c [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")
13 .flag("-Wno-type-limits")
14 .compile("liball.a");
15}