The old trick of calling __wasm_call_ctors to force libc to re-initialize its state won't work anymore since the runtime is a shared library which has its own __wasm_call_ctors (which does nothing), and there's no way to tell wit-component we want to call libc's version instead.
The old trick of calling
__wasm_call_ctors
to force libc to re-initialize its state won't work anymore since the runtime is a shared library which has its own__wasm_call_ctors
(which does nothing), and there's no way to tellwit-component
we want to call libc's version instead.