libc-rs/libc-test/build-generated.rs
Knight 0e0fb686d6 libc-test: allow deprecated functions
glibc-2.24 deprecates readdir_r() and readdir64_r()
2016-08-09 14:38:11 +08:00

17 lines
478 B
Rust

// 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");
}