-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Trying to run MIRI on MacOS #7936
Comments
Miri is unable to interpret jitted code, so even if this compile error is fixed, you still wouldn't be able to run wasm modules using wasmtime inside miri. It should be possible to compile wasm modules without actually running them though once this error is fixed. |
Why? Can't it run in interpret-only mode? |
Wasmtime doesn't have an interpreter tier, unfortunately; all Wasm execution depends on running native code generated by Cranelift. |
|
If you want to run miri on some code you want to compile to wasm, you did have to use |
* Fix running MIRI tests on macOS Closes #7936 * Fix unused function with miri
Steps to Reproduce
wasmtime = "*"
cargo miri run
Expected Results
Miri compiles and runs successfully
Actual Results
Failed to compile because of something inside the crate itself. I looked into the module traphandlers and sure enough there is no function named that
Versions and Environment
Wasmtime version or commit: 17.0.1
Operating system: MacOS
Architecture: ARM
The text was updated successfully, but these errors were encountered: