WASI SDK
Jason Teutsch
I keep on running into gotchas about emscripten in all my work, right now i'm fighting with it over something as simple as pow() function, because it's expecting the surrounding environment to provide it as JavaScript Math.pow --- and it's not :slight_smile: Think I need to take a fresh look at leveraging WASI SDK again
i'm using it in quickjs, but in general the problem is that emscripten does a lot of things in the versions in truebit-eth that's more related to it running in a browser or expecting a web environment, where certain things are provided -- for example most float functions are expected to be provided by an external-from-wasm function :slight_smile:
but i got annoyed enough at it i'm halfway towards a saner solution involving wasi :slight_smile: