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
{{ message }}
This repository was archived by the owner on Aug 25, 2025. It is now read-only.
I did two experiments with wasm runtimes (1, 2) and both of them requires access to tables.
Today, in wasm32-unknown-unknown tables are defined inside the wasm but not exported. To workaround this, I have to disassemble wasm, add export for table and then assemble back before I can use the modules (script).
So I think, we need a way to communicate to linker that we need either to import or export tables from binary. I understand, this might be not feasible to do with our binaryen 'linking'.
I just want we make sure that this is not problem for upcoming proper linking with LLD.