rust/chg/build.rs
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 06 Dec 2021 17:12:21 +0100
changeset 48446 1d0978cfe968
parent 44688 1f5ab1a9363d
permissions -rw-r--r--
upgrade: explicitly warn when a `--no-xxx` flag is overwritten Some format upgrade/downgrades -needs- revlog to be recomputed. So we now detect that individually and warn when it contradict explicitly passed flag. This is part of a larger series to make `debugupgraderepo` smarter about which revlog it picks by default. Differential Revision: https://phab.mercurial-scm.org/D11869

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