2016-01-18 20:16:38 +01:00
|
|
|
// 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")
|
2016-08-09 07:59:40 +02:00
|
|
|
.flag("-Wno-deprecated-declarations")
|
2016-01-18 20:16:38 +01:00
|
|
|
.flag("-Wno-type-limits")
|
|
|
|
.compile("liball.a");
|
|
|
|
}
|