-
Notifications
You must be signed in to change notification settings - Fork 824
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
No --enable-experimental-io-devices switch in Wasmer 2.0.0 on Windows #2695
Comments
Does this still happen in the latest version of wasmer? |
Yes, in Wasmer 2.2.0-rc1 I still get |
@syrusakbary Is there any reason not to enable the |
I think enabling |
2805: Enable `experimental-io-devices` by default r=Amanieu a=Amanieu Fixes #2695 2806: Fix drop order for Module fields r=Amanieu a=Amanieu The field ordering here is actually significant because of the drop order: we want to drop the artifact before dropping the engine. The reason for this is that dropping the Artifact will de-register the trap handling metadata from the global registry. This must be done before the code memory for the artifact is freed (which happens when the store is dropped) since there is a chance that this memory could be reused by another module which will try to register its own trap information. Note that in Rust, the drop order for struct fields is from top to bottom: the opposite of C++. In the future, this code should be refactored to properly describe the ownership of the code and its metadata. Fixes #2434 Co-authored-by: Amanieu d'Antras <[email protected]> Co-authored-by: ptitSeb <[email protected]>
I have downloaded the latest version of Wasmer 2.0.0 on Windows 10 x64 and wanted to use the I/O devices, so I typed:
but I got this output:
Please include I/O devices in Windows build so that I could run
wasmerboy.wasm
as a standalone GUI app.The text was updated successfully, but these errors were encountered: