Sam Clegg

Results 1124 comments of Sam Clegg

WebAssembly itself does not define any of the core primitives that are fundamental to shell scripting (e.g. fork / exec / pipe / IO streams) so it seem like a...

> > so it seem like a particularly bad fit for compilation to wasm. > > OK, thanks for that - so what do you think would be the best...

It depends what are trying to do exactly. Are you trying to build a module form scratch? If so, then https://pypi.org/project/pybinaryen/ is probably what you want. Or are you trying...

Just looking at the main `wasm.h` I think its looks much better after this change. I especially like the macro blocks with the trailing line continuations all the way to...

Could you upload a PR with the changes that result for formatting with `BasedOnStyle: Chromium` so we can see how intrusive it would be?

It seems to me that any WASI implementation is going have to have it own higher level method for doing dependency resolution. I'm not sure that allowing WASI interface implementations...

Creating an new thread (in this context) is going to be quite different to creating a new stack within the same thread. One major difference which is very observable to...

I think this would be part of wasi-sdk, as part of its support for C++ in general. I don't think there should be any need for the wasi-threads proposal to...

With C++ its up to clang to generate `__cxa_thread_atexit` calls and then its up the libc++ to implement `__cxa_thread_atexit`. I don't think we should need to tool convention since the...