rust/chg/build.rs
author Raphaël Gomès <rgomes@octobus.net>
Thu, 28 Jan 2021 15:26:33 +0100
changeset 46479 095fa99ae5f5
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
revlog: prepare pure parser for being overloaded The current class uses module-level variables which don't allow for reusing the current logic for a slightly different revlog version. Differential Revision: https://phab.mercurial-scm.org/D9903

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