Do android/ios apps have access to wasm JIT?

Problem: We want to generate wasm32 at runtime and then execute it at near native speed.

======

  1. On x86_64, we have access to wasm JIT via wasmtime/wasmer.

  2. In browser/wasm32, atleast in Chrome, we have access to wasm JIT by using the browser's wasm functionality.

  3. IIRC, android/ios have various anti-JIT terms. On Android/iOS, do Rust apps have access to wasm32 JIT functionality ?

You should be able to use a JIT on Android. From memory, I think Wasmer could run on Android.

When we wanted to run WebAssembly on iOS we used the WASM3 interpreter.

1 Like

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.