diff options
Diffstat (limited to 'libc/libc-test/build-generated.rs')
-rw-r--r-- | libc/libc-test/build-generated.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libc/libc-test/build-generated.rs b/libc/libc-test/build-generated.rs new file mode 100644 index 0000000..a51c0e3 --- /dev/null +++ b/libc/libc-test/build-generated.rs @@ -0,0 +1,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"); +} |