rust/chg/build.rs
author Raphaël Gomès <rgomes@octobus.net>
Thu, 26 Sep 2024 13:55:26 +0200
changeset 52169 84b5802ba7d3
parent 44688 1f5ab1a9363d
permissions -rw-r--r--
rust: populate mmap by default if available See 522b4d729e89edc76544fa549ed36de4aea0b7fb for more details. Background population to follow in a later patch.

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