From 7ca0430a40f803a3665f6ce6b69fb06f2a859021 Mon Sep 17 00:00:00 2001 From: Patrick Ventuzelo Date: Mon, 25 Nov 2019 13:17:07 +0100 Subject: [PATCH 1/2] activate pre_validation when llvm backend selected --- lib/runtime-core/src/codegen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runtime-core/src/codegen.rs b/lib/runtime-core/src/codegen.rs index 99158fb1501..7b4533296b9 100644 --- a/lib/runtime-core/src/codegen.rs +++ b/lib/runtime-core/src/codegen.rs @@ -263,7 +263,7 @@ impl< fn requires_pre_validation(backend: Backend) -> bool { match backend { Backend::Cranelift => true, - Backend::LLVM => false, + Backend::LLVM => true, Backend::Singlepass => false, } } From 95ccd998092e333f8c8292ac087dfc5c6589a68d Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Mon, 25 Nov 2019 11:25:05 -0800 Subject: [PATCH 2/2] Added ARM reference --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f513663f5f1..6b8ca9d48bf 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ ## Introduction -[Wasmer](https://wasmer.io/) is a standalone WebAssembly runtime for running WebAssembly [outside of the browser](https://webassembly.org/docs/non-web/), supporting [WASI](https://github.com/WebAssembly/WASI) and [Emscripten](https://emscripten.org/). +[Wasmer](https://wasmer.io/) is a standalone WebAssembly runtime for running WebAssembly [outside of the browser](https://webassembly.org/docs/non-web/), supporting [WASI](https://github.com/WebAssembly/WASI) and [Emscripten](https://emscripten.org/). Wasmer can be used standalone (via the CLI) and embedded in different languages, running in x86 and [ARM devices](https://medium.com/wasmer/running-webassembly-on-arm-7d365ed0e50c). Install the Wasmer CLI with: