rust/chg/build.rs
author Raphaël Gomès <rgomes@octobus.net>
Wed, 03 Nov 2021 17:06:01 +0100
changeset 48297 9ebc10ad4a04
parent 44688 1f5ab1a9363d
permissions -rw-r--r--
rust-format: update rustfmt version This hasn't been updated in a while, and since we're updating the MSRV to 1.48.0, we might as well do this. Differential Revision: https://phab.mercurial-scm.org/D11733

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