aleclearmind
aleclearmind
OK, I've a fix where we emit the error in a nicer way. However the main problem is that we never looked into macOS's ABIs. We'll now take a look....
OK, we investigated a bit the situation and turns out that we can rather easily support x86-64 macOS ABI (identical to the Linux one) and with some more work the...
We're working on supporting Apple ABIs in #387. The program should now exit with a nice error message, dropping the `crash` tag.
We now support the AArch64 macOS ABI. Feel free to reopen if you still experience issues.
I've a fix for this problem, will merge soon. However, we do not currently support x86-64 macOS ABI, but #387 should fix that, should go in soon too. Thanks for...
This has been fixed and we now support the macOS ABI. We still have a crash on DLA, but the following command works successfully: ```bash revng artifact lift --analyses=import-binary,detect-abi,detect-stack-size,convert-functions-to-cabi -o...
Can we have `--gdb="--extra-gdb-arg"` instead of a distinct option?
I'm not very persuaded. Maybe we should just have a `--wrapper` and let people do ``` revng --wrapper='gdb --mycustom-arg --args' artifact --analyze decompile-to-single-file calc ``` This PR introduces 7 new...
Sure, go ahead. Just to clarify: my proposal is about *adding* `--wrapper` and keep `--gdb` but *not adding* `--gdb-args`.
Merged in ba0f374. Thanks.