Is there a simple way to inspect the output of wamrc (AOT compiler)? I'd like see the resulting code.
Mats Brorsson said:
Is there a simple way to inspect the output of wamrc (AOT compiler)? I'd like see the resulting code.
I tried using objdump
but the file format was not recognized.
Hi, you can use format=object
option to generate an object file (elf), then you can use objdump
to see the content.
Last updated: Nov 22 2024 at 17:03 UTC