Fix the calling convention used for jitting and such, so it works on non-SystemV hosts.

This commit is contained in:
2023-09-19 20:28:08 -07:00
parent eff46985ce
commit 85ff5c5437
5 changed files with 16 additions and 9 deletions

View File

@@ -12,12 +12,12 @@ path = "src/lib.rs"
clap = { version = "^3.0.14", features = ["derive"] }
codespan = "0.11.1"
codespan-reporting = "0.11.1"
cranelift-codegen = "0.99.1"
cranelift-jit = "0.99.1"
cranelift-frontend = "0.99.1"
cranelift-module = "0.99.1"
cranelift-native = "0.99.1"
cranelift-object = "0.99.1"
cranelift-codegen = "0.99.2"
cranelift-jit = "0.99.2"
cranelift-frontend = "0.99.2"
cranelift-module = "0.99.2"
cranelift-native = "0.99.2"
cranelift-object = "0.99.2"
internment = { version = "0.7.0", default-features = false, features = ["arc"] }
lalrpop-util = "^0.20.0"
lazy_static = "^1.4.0"