bpfjit 0.1.1

BPF JIT compiler from FreeBSD
Documentation
1
2
3
4
5
6
7
8
9
extern crate gcc;

fn main() {
    gcc::Config::new()
        .file("src/bpf_jit_machdep.c")
        .include("src")
        .define("__FBSDID(__x)", Some(""))
        .compile("libbpfjit.a");
}