Switch back to cranelift due to versioning and aarch64 issues

This commit is contained in:
Brendan Hansknecht 2021-11-06 14:24:58 -07:00
parent 40f0271ccf
commit 74a55f53f3
5 changed files with 113 additions and 87 deletions

View file

@ -12,7 +12,7 @@ roc_mono = { path = "../mono" }
bumpalo = { version = "3.8.0", features = ["collections"] }
roc_std = { path = "../../roc_std" }
wasmer = { version = "2.0.0", default-features = false, features = ["default-llvm", "default-universal"] }
wasmer = { version = "2.0.0", default-features = false, features = ["default-cranelift", "default-universal"] }
[dev-dependencies]
roc_can = { path = "../can" }

View file

@ -32,7 +32,7 @@ libc = "0.2.106"
inkwell = { path = "../../vendor/inkwell" }
target-lexicon = "0.12.2"
libloading = "0.7.1"
wasmer = { version = "2.0.0", default-features = false, features = ["default-llvm", "default-universal"] }
wasmer = { version = "2.0.0", default-features = false, features = ["default-cranelift", "default-universal"] }
wasmer-wasi = "2.0.0"
tempfile = "3.2.0"

View file

@ -9,7 +9,7 @@ edition = "2018"
# roc_module = { path = "../module" }
# roc_mono = { path = "../mono" }
wasmer = { version = "2.0.0", default-features = false, features = ["default-llvm", "default-universal"] }
wasmer = { version = "2.0.0", default-features = false, features = ["default-cranelift", "default-universal"] }
wasmer-wasi = "2.0.0"
roc_collections = { path = "../collections" }