rust/chg/build.rs
author Boris Feld <boris.feld@octobus.net>
Thu, 08 Nov 2018 16:01:30 +0100
changeset 40654 54de23400b2a
parent 40119 cd490ac908c0
child 44689 1f5ab1a9363d
permissions -rw-r--r--
sparse-revlog: stop using a heap to track gaps The heap doesn't bring any performance advantage as we can simply sort the final list. Moreover, the lesser complexity helps a lot when we later implement it in C.

extern crate cc;

fn main() {
    cc::Build::new()
        .warnings(true)
        .file("src/sendfds.c")
        .file("src/sighandlers.c")
        .compile("procutil");
}