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

@@ -142,7 +142,7 @@ impl CompilerConfig for LLVMConfig {
}
/// Transform it into the compiler
fn compiler(&self) -> Box<dyn Compiler> {
fn compiler(&self) -> Box<dyn Compiler + Send> {
Box::new(LLVMCompiler::new(&self))
}
}