Sam Clegg
Sam Clegg
I disagree that wasm-ld output should not be expected to be ship-able and run-able as is. I hope that for many uses it will be. If wasm-ld *is* part of...
Wait, it sounds like you are fact asking for the opposite of what we thought you were asking for. You *are* observing mangled names in decompiled output and what you...
Perhaps we should make it clear when the error is from a custom section? And point users to `--ignore-custom-section-errors` in the error message? Also, perhaps that flag is misnamed, since...
(Will wait for @keithw approval before landing)
I'm not quite sure what you are asking, but wasm2wat (one of the tools which is part of wabt) does indeed convert from the wasm binary format into the wat...
There is a folded format for the instruction section, but IIRC it cannot present all of the stack ways operations can be ordered WRT the value stack, so wabt uses...
Thanks, I'll take a look.
Hmm, what version of llvm was used to compile that file? It looks like that I added the extrea leb to that section back in https://reviews.llvm.org/D55613, which I think means...
Also, I don't think `wasm32-unknown-unknown` should be producing dynamic libraries should it? Does it even support the `-shared` flag?
Yes I think wasm-ld from llvm 7 would produce such a dylink section, but even then only if linked as a shared library with `-shared` or `-pie` I believe. Either...