view rust/chg/build.rs @ 51453:bb8612053547

branchcache: fix the copy code We copy some internal attribute along too. This should prevent inconsistency in the resulting branchmap.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 19 Feb 2024 12:09:06 +0100
parents 1f5ab1a9363d
children
line wrap: on
line source

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