Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Disable SIMD support in wasmtime
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Jan 16, 2022
1 parent adabea6 commit 39d636c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/executor/wasmtime/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ fn common_config(semantics: &Semantics) -> std::result::Result<wasmtime::Config,
config.wasm_multi_memory(false);
config.wasm_module_linking(false);
config.wasm_threads(false);
config.wasm_simd(false);

Ok(config)
}
Expand Down

0 comments on commit 39d636c

Please sign in to comment.