Jorge Zapata
Jorge Zapata
Hello, are there any news about this proposal? Shall I go ahead with the full implementation?
Sure @studioj, testing this will require an Atlassian Connect application to be installed on a Jira instance. I'm not sure how to proceed on this. Could you please provide some...
I'm using the --pre-js to set some envvars and the application is correctly getting and using it when compiled without optimization, but on -OX, the code similar to this, doesn't...
Yes, you are right. I read the condition the other way around. Module['canvas'] is correctly set, the problem is on the second condition `canvas.controlTransferredOffscreen`, it is true. Like if the...
Hmmm, the situation is similar but not the same. With `PROXY_TO_PTHREAD`, the following sequence happens if I create my thread requesting (attr set) "#canvas": ``` Main Thread -> Proxied Thread...
Thanks @sbc100. Actually the code is written in WAST already which is much easier to code. I don't think writing llvm asm is an option here. About the fallbacks, yes...
> Are you sure? Can you share the wast file so we can check it out together? I would hope it would be relatively easy to convert from one to...
> I'm afraid I don't quite understand the question. Can you elaborate? I apologize, yes. You were referring to the "llvm asm" option as the easiest one, but given that...
I see, thanks for the information. I'll check https://github.com/WebAssembly/tool-conventions/blob/main/DynamicLinking.md as it seems it describes the current ABI to load wasm modules. Thanks!
Answering myself after some findings > How to include the .wasm file as part of the linking phase? Check https://emscripten.org/docs/compiling/Dynamic-Linking.html#load-time-dynamic-linking simply do a `emcc -sMAIN_MODULE main.c libsomething.wasm` being libsomething.wasm the...