eclair_bindings_derive 0.1.0

proc-macro crate, for use together with 'eclair_bindings'
Documentation
1
2
3
4
5
6
7
8
9
extern crate cc;

fn main() {
    // TODO: Also invoke Eclair compiler to generate the test.ll
    cc::Build::new()
        .compiler("clang")
        .file("tests/fixtures/test.ll")
        .compile("eclair");
}