lucet-runtime 0.3.0

Pure Rust runtime for Lucet WebAssembly toolchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use cc;

fn main() {
    build_c_api_tests();
}

fn build_c_api_tests() {
    cc::Build::new()
        .file("tests/c_api.c")
        .include("include")
        .compile("lucet_runtime_c_api_tests");
}