rust/chg/build.rs
author Matt Harbison <matt_harbison@yahoo.com>
Mon, 25 Jan 2021 19:03:27 -0500
changeset 46461 38b9a63d3a13
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
cext: restore the ability to build on Windows with py2 This broke in e92ca942ddca. Differential Revision: https://phab.mercurial-scm.org/D9867

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