wasmer-vm 1.0.0-beta2

Runtime library support for Wasmer
Documentation
1
2
3
4
5
6
7
8
9
//! Runtime build script compiles C code using setjmp for trap handling.

fn main() {
    println!("cargo:rerun-if-changed=src/trap/helpers.c");
    cc::Build::new()
        .warnings(true)
        .file("src/trap/helpers.c")
        .compile("helpers");
}