wasmtime
wasmtime copied to clipboard
Failed to build for `i686-pc-windows-msvc`
File winx32.rs
is outdated.
error[E0433]: failed to resolve: use of undeclared crate or module `cranelift_codegen`
--> C:\Users\VssAdministrator\.cargo\registry\src\github.com-1ecc6299db9ec823\wasmtime-jit-0.38.1\src\unwind\winx32.rs:4:5
|
4 | use cranelift_codegen::isa::{unwind::UnwindInfo, TargetIsa};
| ^^^^^^^^^^^^^^^^^ use of undeclared crate or module `cranelift_codegen`
error[E0432]: unresolved import `crate::unwind::UnwindRegistration`
--> C:\Users\VssAdministrator\.cargo\registry\src\github.com-1ecc6299db9ec823\wasmtime-jit-0.38.1\src\code_memory.rs:3:5
|
3 | use crate::unwind::UnwindRegistration;
| ^^^^^^^^^^^^^^^------------------
| | |
| | help: a similar name exists in the module: `UnwindRegistry`
| no `UnwindRegistration` in `unwind`
Some errors have detailed explanations: E0432, E0433.
This is not a supported platform at this time, primarily because Cranelift does not have an i686 backend. I've tagged this for a feature request for platform support though.
OK, if it doesn't support i686, a compile_error!("unsupported platform");
would be nice.
Same as #3634
Since #5226 this throws a compile error.
The compile error was removed in #5627.