[question] How to use create-exe for my game? #3112
Replies: 1 comment
-
The binary may be architecture-independent, but it still depends on the environment it was compiled for (which is the specific environment provided by
This looks to be a minified and recent version of the emscripten environment, which isn't supported by wasmer. (As indicated by the fact that it's looking for WASI.) In general, I wouldn't expect to be able to compile and run arbitrary things with WASM. Games are on the more difficult side. Experimental support for GUIs exists, but iirc no sound. If you want to make a standalone version of a game that originally targets the web, using electron or tauri instead of wasmer might be a more walkable path. |
Beta Was this translation helpful? Give feedback.
-
Summary
Hi,
Im reading your article about universal binary format. How can i convert my open source game example to this executable?
How can i use create-exe for my game?
The .wasm file if here:
https://github.com/nativium/nativium-game/actions/runs/2847623683
Or attached:
nativium.wasm.zip
Today im getting error:
Beta Was this translation helpful? Give feedback.
All reactions