rust/chg/build.rs
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 30 Nov 2020 14:06:45 +0100
changeset 46012 7c539f0febbe
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
upgrade: add an explicite --filelogs arguments This make it possible to select no revlog for upgrade, which is useful for some upgrade target or in some specific cases (eg: persistent-nodemap or share-safe update). Differential Revision: https://phab.mercurial-scm.org/D9468

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