Apply various fixes to get the C API working

24% of tests are passing now!
This commit is contained in:
Mark McCaskey
2020-05-07 14:02:13 -07:00
parent 68bf175ddb
commit 480ecd2cda
17 changed files with 167 additions and 165 deletions

View File

@@ -27,7 +27,7 @@ pub trait CompilerConfig {
fn target(&self) -> &Target;
/// Gets the custom compiler config
fn compiler(&self) -> Box<dyn Compiler>;
fn compiler(&self) -> Box<dyn Compiler + Send>;
}
/// An implementation of a Compiler from parsed WebAssembly module to Compiled native code.