Hacker News new | ask | show | jobs
by OmegaMetor 928 days ago
Works very well. I compiled the same c++ code to wasm and native (without optimization), the native version was slower than the wasm one running in this and jit'd, including startup time. Planning on using it for scripting for a game engine I'm slowly working on, instead of being locked into one language.
2 comments

Did I understand correctly that the native code was compiled without optimization? Meaning “-O0”?
Which benchmark did you use?