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
Delay loading of embedded file data until static constructors are run (#17209)
This code was relying on static data relocations being applied during
module instantiation, but a recent change to llvm reverts to the
previous behaviour of applying relocation during `__wasm_call_ctors`:
https://reviews.llvm.org/D127333
This change delays the loading of embedded files until static ctor time
after the relocations have been applied. As a followup I think we can
look into completely removing the pre-js in this case.
err('--obj-output is recommended when using --embed. This outputs an object file for linking directly into your application is more effecient than JS encoding')
675
+
ifoptions.has_embeddedandnotoptions.obj_output:
676
+
err('--obj-output is recommended when using --embed. This outputs an object file for linking directly into your application is more effecient than JS encoding')
0 commit comments