Enrico Loparco
Enrico Loparco
Hello, I'm getting the same error on MacOS M1, did you manage to find a solution?
@wenyongh Any hints on what changes would be needed to use AOT on M1 macs? After reading the [docs](https://developer.apple.com/documentation/apple-silicon/porting-just-in-time-compilers-to-apple-silicon), I was changing ``` bash diff --git a/core/iwasm/aot/aot_loader.c b/core/iwasm/aot/aot_loader.c index b5fa33c0..854453ad...
Managed to get it to work, opening a PR
Hello, I was taking a look at these changes to enable disassemble requests. I was wondering, what's the difference between `read_instructions()` (used for positive offsets) and `read_memory()` + `get_instructions()` (used...
I'm writing a custom extension and your implementation is being a good guidance! Still, I'm having problems when VS Code asks for a large offset (e.g. `-200`) for my small...
Actually, in codelldb it works fine. That's why I was wondering where that case is handled in codelldb code. I'm trying to do something similar but using the VS Code...
Yes, that's what I was already looking at and using as a reference. Maybe in your case you receive valid offsets, so my issues (i.e. offset resulting in reading memory...
Your implementation works perfectly, I was having a problem on my side. Thanks for the reply!
You can take a look at https://github.com/bytecodealliance/wasm-micro-runtime/issues/3164
Agree that locking the entire shared memory is overkill. Trying to understand if the TSAN problem is a false alarm or if it's coming from the WASM app (wasm-parallel-gzip) not...