Displaying 1 result from an estimated 1 matches for "maloader".
2020 Oct 08
4
__attribute__((apple_abi)): targeting Apple/ARM64 ABI from Linux (and others)
...and all their flavors. As we like to test
things, we have to run at some points binaries under iOS/{armv7,arm64}, which is not
something really easy to do provided the official Apple hardware.
In one of other attempts to make all this mess easier to handle, we adapted the
https://github.com/shinh/maloader project (that will be open source if all of this works)
to load ARM64 MachO under Linux and run the final binary using qemu-user. This can be seen
as a very light version of wine [1] for iOS.
Where troubles come in
----------------------
All of this could have "just worked", but Apple h...