You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dynamic linking code will generate a stub if it's not resolved when first imported:
// Return a stub function that will resolve the symbol// when first called.if(!(propinstubs)){varresolved;stubs[prop]=(...args)=>{resolved||=resolveSymbol(prop);returnresolved(...args);};}
The dynamic linking code will generate a stub if it's not resolved when first imported:
https://github.com/emscripten-core/emscripten/blob/main/src/library_dylink.js?plain=1#L724-L727
This causes trouble when mixed with stack switching. Working around it will be a bit convoluted, but it should be possible with a little helper wasm module.
The text was updated successfully, but these errors were encountered: