Sam Clegg
Sam Clegg
However I agree this issue should probably be renamed since it relates not just to memory but to anything that wasm module might want to export.
The only problem I see is that often seems to confuse people. I don't feel strongly about it but perhaps since the name is part of the binary format, we...
The changes was originally made here: https://github.com/emscripten-core/emscripten/pull/15590. I don't see any immediate reason why it should be in Emscripten.cmake instead. I guess we want to avoid duplication we would need...
> @sbc100 have you thought about making `-sWASM_BIGINT` the default in general? I guess the fact that it requires Safari 15 is the most onerous requirement but Safari 15 came...
> > @sbc100 have you thought about making `-sWASM_BIGINT` the default in general? I guess the fact that it requires Safari 15 is the most onerous requirement but Safari 15...
> Actually, linking with `-lc -sWASM_BIGINT` also seems to be broken [emscripten-core/emscripten#22758](https://github.com/emscripten-core/emscripten/issues/22758). Emscripten really doesn't like it when you pass `-lc` @sbc100. It seems like that bug is a blocker....
@juj @cwoffenden, I guess we need to find a way to make emscripten_futex_wait/wake work with AUDIO_WORKLET? Seems like folks will likely want to be able to use these core C++...
Oh, I see this is just for stdout? I guess its perhaps not surprising that doesn't work in audio worklets since file I/O in general doesn't work there (since it...
For logging in audio worklets you can use emscripen_out / emscripten_err / emscripten_console_*
Since this type is already encapsulated within the module perhaps its OK for the names to collide? FWIW I reallly don't like `MainModule` as a name, but that is a...