rust/chg/build.rs
author Yuya Nishihara <yuya@tcha.org>
Tue, 08 Sep 2020 21:38:10 +0900
changeset 45440 9c8d2cf7f591
parent 44689 1f5ab1a9363d
permissions -rw-r--r--
test-grep: document that trivially moved lines might not be detected I'm not going to fix this. I just learned "grep --diff" does clever thing than a simple grep(patch.diff(context=0)), and I think it's better to document how things work.

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