rust/chg/build.rs
author Ian Moody <moz-ian@perix.co.uk>
Sat, 09 Mar 2019 02:07:09 +0000
changeset 41911 2b21c7fbb3a1
parent 40119 cd490ac908c0
child 44689 1f5ab1a9363d
permissions -rw-r--r--
py3: use % instead of .format() on a bytestring Differential Revision: https://phab.mercurial-scm.org/D6112

extern crate cc;

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