Jonas Minnberg

Results 35 comments of Jonas Minnberg

Actually this works; ```cpp auto* inst = wasm_runtime_get_module_inst(env); auto* module = wasm_runtime_get_module(inst); auto ip = (uint32)(cur_frame->prev_frame->ip - ((WASMModule*)module)->load_addr); ```

It is actually possible to run the FAST interpreter from ROM. It uses more memory though.

I realized that maybe this only works if the particular argument can not be resolved so it is guaranteed to not be included in what resolve_args() returns. But that is...

This is the current I hack I've come up with. Not great but it works; ```python @dataclass class Resolver: parent: Container c: Container def setup[T](self, typ: Type[T]) -> T: self.c[typ]...

`/usr/local/include` is _not_ a standard include path on macOS AFAIK. I often add it in cmake explicitly (using `include_directories()`. I have the same error, but only when I try to...