Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for exceptions in LLVM #5347

Open
wants to merge 10 commits into
base: wasmer-5.1.0
Choose a base branch
from
135 changes: 115 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,11 @@ hyper = "1"
reqwest = { version = "0.12.0", default-features = false }
enumset = "1.1.0"
memoffset = "0.9.0"
wasmparser = { version = "0.216.0", default-features = false, features = [
wasmparser = { version = "0.221.0", default-features = false, features = [
"validate",
"features",
"component-model",
"simd",
] }
rkyv = { version = "0.8.8", features = ["indexmap-2", "bytes-1"] }
memmap2 = { version = "0.6.2" }
Expand Down Expand Up @@ -155,7 +158,7 @@ tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
] }
reqwest = {workspace = true, features = ["blocking", "rustls-tls"]}
reqwest = { workspace = true, features = ["blocking", "rustls-tls"] }

[features]
# Don't add the compiler features in default, please add them on the Makefile
Expand Down
6 changes: 6 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ fn main() -> anyhow::Result<()> {
.expect("Can't get directory");
build_deps::rerun_if_changed_paths("tests/wasi-wast/wasi/nightly-2022-10-18/*")
.expect("Can't get directory");
build_deps::rerun_if_changed_paths("tests/wast/spec/proposals/*").expect("Can't get directory");

let out_dir = PathBuf::from(
env::var_os("OUT_DIR").expect("The OUT_DIR environment variable must be set"),
Expand All @@ -42,6 +43,11 @@ fn main() -> anyhow::Result<()> {
wast_processor,
)?;
test_directory_module(spectests, "tests/wast/spec/proposals/simd", wast_processor)?;
test_directory_module(
spectests,
"tests/wast/spec/proposals/exception-handling",
wast_processor,
)?;
test_directory_module(
spectests,
"tests/wast/spec/proposals/threads",
Expand Down
Loading
Loading