Disable jit by default & fix run_jit from sync
diff --git a/compiler/rustc_codegen_cranelift/Cargo.toml b/compiler/rustc_codegen_cranelift/Cargo.toml index 2789207..952458a 100644 --- a/compiler/rustc_codegen_cranelift/Cargo.toml +++ b/compiler/rustc_codegen_cranelift/Cargo.toml
@@ -37,7 +37,7 @@ #gimli = { path = "../" } [features] -default = ["jit", "inline_asm"] +default = ["inline_asm"] jit = ["cranelift-jit", "libloading"] inline_asm = []