Split the runtime and execution code into separate crates.

This commit is contained in:
Dan Gohman
2017-10-03 14:57:52 -07:00
parent 6ded83332f
commit 23bafd1218
13 changed files with 62 additions and 40 deletions

8
lib/obj/src/lib.rs Normal file
View File

@@ -0,0 +1,8 @@
extern crate cretonne;
extern crate cton_wasm;
extern crate faerie;
extern crate wasmstandalone_runtime;
mod emit_module;
pub use emit_module::emit_module;